diff options
| author | Nakidai <nakidai@disroot.org> | 2026-01-10 16:32:54 +0300 |
|---|---|---|
| committer | Nakidai <nakidai@disroot.org> | 2026-01-10 16:32:54 +0300 |
| commit | 76e2c978829bc6ff7bfe6c49bfa3739e19370990 (patch) | |
| tree | 07851d4ee5ca107ce4ec18889b20c006f56f53d3 /loop.c | |
| parent | 346abf24c900a19a77a8ce66566a7ffd86a819bb (diff) | |
| download | libreircd-76e2c978829bc6ff7bfe6c49bfa3739e19370990.tar.gz libreircd-76e2c978829bc6ff7bfe6c49bfa3739e19370990.zip | |
Add basic user mode handling
So, now there're all modes listed in RFC 2812. The only what they do now, though, is a +r restricting user from changing their nick
Diffstat (limited to 'loop.c')
| -rw-r--r-- | loop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loop.c b/loop.c index aa3f458..cfba4b6 100644 --- a/loop.c +++ b/loop.c @@ -34,7 +34,7 @@ struct Peer peers[PEERS_MAX]; size_t peers_c; const char *host; -int port; +unsigned long port; void ircd(void) |