summaryrefslogtreecommitdiffstats
path: root/sockutil.h
diff options
context:
space:
mode:
Diffstat (limited to 'sockutil.h')
-rw-r--r--sockutil.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/sockutil.h b/sockutil.h
new file mode 100644
index 0000000..6e4b8dd
--- /dev/null
+++ b/sockutil.h
@@ -0,0 +1,8 @@
+#include <netinet/in.h>
+
+int getsockport(int sd);
+int bind_any(int minport);
+int connect_to_host(char *hostname, int port);
+int connect_to_peer(struct sockaddr_in *peer, int port);
+struct qa_packet * recv_packet(int fd);
+int send_packet(int fd, struct qa_packet *qp);