diff options
| author | Nakidai <nakidai@disroot.org> | 2026-02-06 17:40:27 +0300 |
|---|---|---|
| committer | Nakidai <nakidai@disroot.org> | 2026-02-06 17:40:27 +0300 |
| commit | e6aff7291f742cf3a435b8103f98699eab75c948 (patch) | |
| tree | 215fc421e3f324e21d0a0fbf7df799db424f59c7 /ircd.h | |
| parent | 9ae659fd6c792407f3d80ea4d313bf850c2332ec (diff) | |
| download | libreircd-e6aff7291f742cf3a435b8103f98699eab75c948.tar.gz libreircd-e6aff7291f742cf3a435b8103f98699eab75c948.zip | |
Add basic support for channel oper
At least it is now set to a first user :D
Diffstat (limited to 'ircd.h')
| -rw-r--r-- | ircd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ircd.h b/ircd.h index 0959d12..29457d8 100644 --- a/ircd.h +++ b/ircd.h @@ -65,7 +65,7 @@ struct Channel { enum { GLOBAL, LOCAL, MODELESS, SAFE } type; char name[CHANNEL_NAME_MAX]; - struct { + struct ChannelPeer { struct Peer *p; enum ChannelPeerMode { BIT(CHANNEL_OPER), |