summary refs log tree commit diff
path: root/ircd.h
diff options
context:
space:
mode:
Diffstat (limited to 'ircd.h')
-rw-r--r--ircd.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/ircd.h b/ircd.h
index f85d33f..d05614c 100644
--- a/ircd.h
+++ b/ircd.h
@@ -73,6 +73,12 @@ struct Channel
 	size_t modes_c, users_c;
 };
 
+struct Oper
+{
+	char nick[PEER_NICK_MAX];
+	char pass[OPER_PASS_MAX];
+};
+
 typedef int Handler(struct Message *msg, struct Peer *peer);
 
 extern struct Channel channels[CHANNELS_MAX];