summaryrefslogtreecommitdiff
path: root/net.h
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2022-08-21 11:20:37 +0200
committerxengineering <me@xengineering.eu>2022-08-21 11:21:51 +0200
commit40aca0691949f41c27704c1f8c4d05fae655cf26 (patch)
tree9eb7d90fc08a39c2bbeef9158c5dc8e783dae515 /net.h
parentbd516ecdb218f4122acf077bef5a4dbde91653e5 (diff)
downloadlimox-40aca0691949f41c27704c1f8c4d05fae655cf26.tar
limox-40aca0691949f41c27704c1f8c4d05fae655cf26.tar.zst
limox-40aca0691949f41c27704c1f8c4d05fae655cf26.zip
Implement message sending
Diffstat (limited to 'net.h')
-rw-r--r--net.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/net.h b/net.h
index 3a53d9e..3bd184a 100644
--- a/net.h
+++ b/net.h
@@ -9,5 +9,6 @@ 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