aboutsummaryrefslogtreecommitdiff
path: root/general_network.h
diff options
context:
space:
mode:
authorTest_User <hax@andrewyu.org>2024-06-12 19:04:16 -0400
committerTest_User <hax@andrewyu.org>2024-06-12 19:04:16 -0400
commita785916b1840dca3acec39d17f454a00975282a0 (patch)
tree338109f8ab63dfa6787ccf65a9557fd39a13776d /general_network.h
parent47d7e30f6acb1c170c8e5e15f2656b89a33384f7 (diff)
downloadhaxircd-a785916b1840dca3acec39d17f454a00975282a0.tar.gz
haxircd-a785916b1840dca3acec39d17f454a00975282a0.zip
str_clone finally, as well as some other stuff
Diffstat (limited to 'general_network.h')
-rw-r--r--general_network.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/general_network.h b/general_network.h
index 6b76256..dc00e43 100644
--- a/general_network.h
+++ b/general_network.h
@@ -75,6 +75,8 @@ struct user_info {
struct string host;
struct string address;
+ struct string user_ts_str;
+ struct string nick_ts_str;
size_t user_ts;
size_t nick_ts;
@@ -93,7 +95,6 @@ int resolve(struct string address, struct string port, struct sockaddr *sockaddr
int init_general_network(void);
int add_user(struct string from, struct string attached_to, struct string uid, struct string nick, struct string fullname, struct string ident, struct string vhost, struct string host, struct string address, size_t user_ts, size_t nick_ts, void *handle, size_t protocol, size_t net);
-// Does not propagate, but will inform local clients about it
void remove_user(struct string from, struct user_info *user, struct string reason, char propagate);
extern char casemap[UCHAR_MAX+1];