summaryrefslogtreecommitdiff
path: root/net.h
diff options
context:
space:
mode:
Diffstat (limited to 'net.h')
-rw-r--r--net.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/net.h b/net.h
deleted file mode 100644
index 3bd184a..0000000
--- a/net.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#ifndef NET_H
-#define NET_H
-
-// life cycle / event loop related functions
-void net_init(void); // initialize net
-void net_run_once(void); // process event loop for a short amount of time
-void net_quit(void); // disconnect and clean up
-
-// interface for the GUI implementation
-void net_connect(const char* jid, const char* password);
-void net_disconnect(void);
-void net_send_message(const char* sender, const char* content,
- const char* recipient);
-#endif