summary refs log tree commit diff
path: root/client.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-11-09 08:44:23 -0500
committerJune McEnroe <june@causal.agency>2019-11-09 08:44:23 -0500
commit2f39eabb2ddc945217a92247724e65f4eb485656 (patch)
treef85ad120e5fb4ae86c9f19427c907168de50b675 /client.c
parentCheck that password is hashed (diff)
downloadpounce-2f39eabb2ddc945217a92247724e65f4eb485656.tar.gz
pounce-2f39eabb2ddc945217a92247724e65f4eb485656.zip
Define macro for bit flag enums
Diffstat (limited to '')
-rw-r--r--client.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/client.c b/client.c
index 32b5b0f..6ac0869 100644
--- a/client.c
+++ b/client.c
@@ -31,10 +31,10 @@
 static size_t count;
 
 enum Need {
-	NeedNick = 1 << 0,
-	NeedUser = 1 << 1,
-	NeedPass = 1 << 2,
-	NeedCapEnd = 1 << 3,
+	BIT(NeedNick),
+	BIT(NeedUser),
+	BIT(NeedPass),
+	BIT(NeedCapEnd),
 };
 
 struct Client {
5b506edf750eecbdb6e677aac4a27bbf&follow=1'>Rename Command to MessageJune McEnroe 2019-10-23Synchronize state after client registrationJune McEnroe 2019-10-23Send to server if client has no needsJune McEnroe 2019-10-23Implement some amount of client connectionJune McEnroe 2019-10-23Set clients non-blockingJune McEnroe 2019-10-23Clean up state.c and factor out parsingJune McEnroe 2019-10-23Respond to pingsJune McEnroe 2019-10-23Add verbose flagJune McEnroe 2019-10-23Set NOSIGPIPE on server connectionJune McEnroe 2019-10-23Set an initial loop capJune McEnroe 2019-10-23Fix rest parsingJune McEnroe 2019-10-23Add dynamic poll listJune McEnroe 2019-10-23Don't assume commands have targets and handle ERRORJune McEnroe 2019-10-23Clean up state somewhatJune McEnroe 2019-10-23Actually send the buffer...June McEnroe 2019-10-23Add stateJune McEnroe