diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2003-09-05 22:15:51 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2003-09-05 22:15:51 +0000 |
commit | 369f5b61b27f259ab38e822bb3ac77a0528a32b7 (patch) | |
tree | ee0ebb4ee0626f9b950ad19d1dd2907ce3e2a2ec /net/dgd/files/patch-comp.c | |
parent | Update to 1.46. (diff) |
. Add (optional) support for the DGD networking package.
Diffstat (limited to 'net/dgd/files/patch-comp.c')
-rw-r--r-- | net/dgd/files/patch-comp.c | 74 |
1 files changed, 74 insertions, 0 deletions
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; + } |