diff options
author | Roderic Morris <roderic@ccs.neu.edu> | 2008-06-10 12:58:51 +0000 |
---|---|---|
committer | Roderic Morris <roderic@ccs.neu.edu> | 2008-06-10 12:58:51 +0000 |
commit | a83cc00d5e0169500d17a9e14b393bab2306ff0a (patch) | |
tree | 447c548ba5fe1503997e45a98ba2ce3012884b31 /src/net/protocol.h | |
parent | f6f031fa4db6fa0ccd6e0b433f61479e9fd85477 (diff) | |
download | mana-client-a83cc00d5e0169500d17a9e14b393bab2306ff0a.tar.gz mana-client-a83cc00d5e0169500d17a9e14b393bab2306ff0a.tar.bz2 mana-client-a83cc00d5e0169500d17a9e14b393bab2306ff0a.tar.xz mana-client-a83cc00d5e0169500d17a9e14b393bab2306ff0a.zip |
update chat packet defs, get rid of unused functions
Diffstat (limited to 'src/net/protocol.h')
-rw-r--r-- | src/net/protocol.h | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/src/net/protocol.h b/src/net/protocol.h index 87577942..3d3f47cf 100644 --- a/src/net/protocol.h +++ b/src/net/protocol.h @@ -163,20 +163,15 @@ enum { PCMSG_ANNOUNCE = 0x0411, // S text PCMSG_PRIVMSG = 0x0412, // S user, S text // -- Channeling - PCMSG_REGISTER_CHANNEL = 0x0420, // B pub/priv, S name, S announcement, S password - CPMSG_REGISTER_CHANNEL_RESPONSE = 0x0421, // B error, W channel, S channel - PCMSG_UNREGISTER_CHANNEL = 0x0422, // W channel - CPMSG_UNREGISTER_CHANNEL_RESPONSE = 0x0423, // B error + PCMSG_REGISTER_CHANNEL = 0x0420, // S name, S announcement, S password + CPMSG_REGISTER_CHANNEL_RESPONSE = 0x0421, // B error, W id, S name, S announcement CPMSG_CHANNEL_EVENT = 0x0430, // W channel, B event, S user - PCMSG_ENTER_CHANNEL = 0x0440, // W channel, S password - CPMSG_ENTER_CHANNEL_RESPONSE = 0x0441, // B error, W channel, S channel - CPMSG_JOINED_CHANNEL = 0x0442, // S channel, W channel id - PCMSG_QUIT_CHANNEL = 0x0443, // W channel - CPMSG_QUIT_CHANNEL_RESPONSE = 0x0444, // B error + PCMSG_ENTER_CHANNEL = 0x0440, // S channel, S password + CPMSG_ENTER_CHANNEL_RESPONSE = 0x0441, // B error, W id, S name, S announcement, S userlist + PCMSG_QUIT_CHANNEL = 0x0443, // W channel id + CPMSG_QUIT_CHANNEL_RESPONSE = 0x0444, // B error, W channel id PCMSG_LIST_CHANNELS = 0x0445, // - - CPMSG_LIST_CHANNELS_RESPONSE = 0x0446, // W number of channels, S channels - CPMSG_USERJOINED = 0x0450, // W channel, S name - CPMSG_USERLEFT = 0x0451, // W channel, S name + CPMSG_LIST_CHANNELS_RESPONSE = 0x0446, // S names, W number of users PCMSG_LIST_CHANNELUSERS = 0x0460, // S channel CPMSG_LIST_CHANNELUSERS_RESPONSE = 0x0461, // S channel, S users |