summaryrefslogtreecommitdiffstats
path: root/lib/socket.h
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1998-05-24 11:19:26 +0200
committerMartin Mares <mj@ucw.cz>1998-05-24 11:19:26 +0200
commit480effedac0ae45a4f01ce32bac962db08ba5a3d (patch)
tree48490422427b559f9fa05646010da53891f883d1 /lib/socket.h
parent2326b001d6f28e69b88c3c19795d8c0999f07db1 (diff)
downloadbird-480effedac0ae45a4f01ce32bac962db08ba5a3d.tar
bird-480effedac0ae45a4f01ce32bac962db08ba5a3d.zip
Added declarations of all our socket functions.
Diffstat (limited to 'lib/socket.h')
-rw-r--r--lib/socket.h38
1 files changed, 37 insertions, 1 deletions
diff --git a/lib/socket.h b/lib/socket.h
index f1c9a64..ee7432b 100644
--- a/lib/socket.h
+++ b/lib/socket.h
@@ -11,6 +11,42 @@
#include "lib/resource.h"
-typedef struct birdsock socket;
+typedef struct birdsock {
+ resource r;
+ int type; /* Socket type */
+ void *data; /* User data */
+ ip_addr saddr, daddr; /* IPA_NONE = unspecified */
+ unsigned sport, dport; /* 0 = unspecified (for IP: protocol type) */
+ int tos; /* TOS and priority, -1 = default */
+ int ttl; /* Time To Live, -1 = default */
+ struct iface *iface; /* Bound to interface */
+
+ byte *rbuf, *rpos; /* NULL=allocate automatically */
+ unsigned rbsize;
+ void (*rx_hook)(struct birdsock *); /* NULL=receiving turned off */
+
+ byte *tbuf, *tpos; /* NULL=allocate automatically */
+ byte *ttx; /* Internal */
+ unsigned tbsize;
+ void (*tx_hook)(struct birdsock *);
+
+ void (*err_hook)(struct birdsock *, int);
+} socket;
+
+socket *sk_get(pool *); /* Allocate new socket */
+int sk_open(socket *); /* Open socket */
+int sk_send(socket *); /* Try to send queued data, > 0 if succeeded */
+int sk_send_to(socket *, ip_addr, unsigned); /* Send queued data to given destination */
+
+/*
+ * Socket types SA SP DA DP IF SendTo (?=may, -=must not, *=must)
+ */
+
+#define SK_TCP_PASSIVE 0 /* ? * - - - - */
+#define SK_TCP_ACTIVE 1 /* ? ? * * - - */
+#define SK_UDP 2 /* ? ? - - - ? */
+#define SK_UDP_MC 3 /* ? ? * * * - */
+#define SK_IP 4 /* ? ? - * - ? */
+#define SK_IP_MC 5 /* ? ? * * * - */
#endif