Home
last modified time | relevance | path

Searched refs:CSTATUS_VOICE (Results 1 – 19 of 19) sorted by relevance

/dports/irc/atheme-services/atheme-7.2.9/modules/contrib/
H A Dcs_updown.c130 if (fl & CA_AUTOVOICE && !(CSTATUS_VOICE & cu->modes)) in cs_cmd_up()
133 cu->modes |= CSTATUS_VOICE; in cs_cmd_up()
219 if ((CSTATUS_VOICE & cu->modes)) in cs_cmd_down()
222 cu->modes &= ~CSTATUS_VOICE; in cs_cmd_down()
/dports/irc/atheme-services/atheme-7.2.9/modules/protocol/
H A Dratbox.c61 { 'v', CSTATUS_VOICE },
67 { '+', CSTATUS_VOICE },
H A Delemental-ircd.c82 { 'v', CSTATUS_VOICE },
91 { '+', CSTATUS_VOICE },
H A Dcharybdis.c84 { 'v', CSTATUS_VOICE },
90 { '+', CSTATUS_VOICE },
H A Dasuka.c67 { 'v', CSTATUS_VOICE },
73 { '+', CSTATUS_VOICE },
H A Dnefarious.c78 { 'v', CSTATUS_VOICE },
85 { '+', CSTATUS_VOICE },
597 cu->modes &= ~CSTATUS_VOICE; in m_clearmode()
H A Dircnet.c62 { 'v', CSTATUS_VOICE },
68 { '+', CSTATUS_VOICE },
H A Dngircd.c67 { 'v', CSTATUS_VOICE },
76 { '+', CSTATUS_VOICE },
H A Dbahamut.c69 { 'v', CSTATUS_VOICE },
75 { '+', CSTATUS_VOICE },
H A Dinspircd.c97 { 'v', CSTATUS_VOICE },
107 { '+', CSTATUS_VOICE },
H A Dunreal.c92 { 'v', CSTATUS_VOICE },
101 { '+', CSTATUS_VOICE },
H A Dunreal4.c94 { 'v', CSTATUS_VOICE },
103 { '+', CSTATUS_VOICE },
H A Dp10-generic.c794 cu->modes &= ~CSTATUS_VOICE; in m_clearmode()
/dports/irc/atheme-services/atheme-7.2.9/modules/chanserv/
H A Dvoice.c100 cu->modes |= CSTATUS_VOICE; in cmd_voice()
102 cu->modes &= ~CSTATUS_VOICE; in cmd_voice()
H A Dsync.c209 if (!noop && fl & CA_AUTOVOICE && !(CSTATUS_VOICE & cu->modes)) in do_chanuser_sync()
212 cu->modes |= CSTATUS_VOICE; in do_chanuser_sync()
216 else if (take && CSTATUS_VOICE & cu->modes) in do_chanuser_sync()
219 cu->modes &= ~CSTATUS_VOICE; in do_chanuser_sync()
H A Dquiet.c129 else if (cu->modes & CSTATUS_VOICE) in devoice_user()
152 if (cu->modes & CSTATUS_VOICE) in devoice_user()
234 if (cu->modes & (CSTATUS_OP | CSTATUS_VOICE)) in notify_victims()
H A Dmain.c571 if (!(noop || cu->modes & (CSTATUS_OP | ircd->halfops_mode | CSTATUS_VOICE))) in cs_join()
574 cu->modes |= CSTATUS_VOICE; in cs_join()
/dports/irc/atheme-services/atheme-7.2.9/modules/groupserv/main/
H A Dhooks.c101 … if (!(cu->modes & (CSTATUS_OP | ircd->halfops_mode | CSTATUS_VOICE)) && ca->level & CA_AUTOVOICE) in grant_channel_access_hook()
104 cu->modes |= CSTATUS_VOICE; in grant_channel_access_hook()
/dports/irc/atheme-services/atheme-7.2.9/include/
H A Dchannels.h76 #define CSTATUS_VOICE 0x00000002 macro