From 369f5b61b27f259ab38e822bb3ac77a0528a32b7 Mon Sep 17 00:00:00 2001 From: Greg Lewis Date: Fri, 5 Sep 2003 22:15:51 +0000 Subject: . Add (optional) support for the DGD networking package. --- net/dgd/files/patch-comp.c | 74 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 net/dgd/files/patch-comp.c (limited to 'net/dgd/files/patch-comp.c') diff --git a/net/dgd/files/patch-comp.c b/net/dgd/files/patch-comp.c new file mode 100644 index 000000000000..cb23188eb861 --- /dev/null +++ b/net/dgd/files/patch-comp.c @@ -0,0 +1,74 @@ +--- src/comp/comp.c.orig Tue Sep 2 10:58:56 2003 ++++ src/comp/comp.c Tue Sep 2 11:14:29 2003 +@@ -558,6 +558,20 @@ + return TRUE; + } + ++#ifdef NETWORK_PACKAGE ++/* ++ * NAME: comm->openport() ++ * DESCRIPTION: pretend to open a port ++ */ ++void comm_openport(f, obj, protocol, portnr) ++frame *f; ++object *obj; ++unsigned char protocol; ++unsigned short portnr; ++{ ++} ++#endif ++ + /* + * NAME: comm->finish() + * DESCRIPTION: pretend to terminate connections +@@ -585,6 +599,35 @@ + return 0; + } + ++#ifdef NETWORK_PACKAGE ++/* ++ * NAME: comm->connect() ++ * DESCRIPTION: pretend to open a connection to a port ++ */ ++void ++comm_connect(f, obj, addr, protocol, port) ++frame *f; ++object *obj; ++char *addr; ++unsigned char protocol; ++unsigned short port; ++{ ++} ++ ++/* ++ * NAME: comm->senddatagram() ++ * DESCRIPTION: pretend to send a UDP datagram ++ */ ++int comm_senddatagram(obj, str, ip, port) ++object * obj; ++string * str; ++string * ip; ++int port; ++{ ++ return 0; ++} ++#endif ++ + /* + * NAME: comm->udpsend() + * DESCRIPTION: pretend to send a message on the UDP channel of a connection +@@ -668,8 +711,14 @@ + * NAME: comm->users() + * DESCRIPTION: pretend to return an array with all user objects + */ ++#ifdef NETWORK_PACKAGE ++array *comm_users(data, ports) ++dataspace *data; ++bool ports; ++#else + array *comm_users(data) + dataspace *data; ++#endif + { + return (array *) NULL; + } -- cgit v1.2.3