summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2016-05-05 14:59:28 +0200
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2016-05-05 14:59:28 +0200
commit3405b0c1635843cbb81f042364bfcf238d7dc930 (patch)
tree39501fec9ec72863c929a45dbc297412bbf90688 /src/io/network.h
parentc28bb6d31a122ec983e1e0a0dd1a8bd198098c58 (diff)
Adds the current code.
It's been running for close to a month on one of the IRC channels I frequent and seems to be working fine. One should be aware that, among other missing features, this version does not store permanently what the bot learns. Indeed, I am currently using a file with 431848 lines as its initial knowledge bank, making this particular feature not a high priority one. Also consider the fact that Zero of One converts text to underscore before reading it but will not change its own aliases. This could potentially be a cause for surprises when using uppercase letters in the latter.
Diffstat (limited to 'src/io/network.h')
-rw-r--r--src/io/network.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/io/network.h b/src/io/network.h
new file mode 100644
index 0000000..ac7284a
--- /dev/null
+++ b/src/io/network.h
@@ -0,0 +1,27 @@
+#ifndef _ZoO_IO_NETWORK_H_
+#define _ZoO_IO_NETWORK_H_
+#include "network_types.h"
+
+int ZoO_network_connect
+(
+ struct ZoO_network net [const static 1],
+ const char host [const restrict static 1],
+ const char port [const restrict static 1],
+ const char channel [const restrict static 1],
+ const char user [const restrict static 1],
+ const char name [const restrict static 1],
+ const char nick [const restrict static 1]
+);
+
+int ZoO_network_receive
+(
+ struct ZoO_network net [const static 1],
+ size_t msg_offset [const restrict static 1],
+ size_t msg_size [const restrict static 1]
+);
+
+int ZoO_network_send (struct ZoO_network net [const restrict static 1]);
+
+void ZoO_network_disconnect (struct ZoO_network net [const restrict static 1]);
+
+#endif