Home
last modified time | relevance | path

Searched refs:svstag (Results 1 – 3 of 3) sorted by relevance

/dports/irc/ircd-hybrid/ircd-hybrid-8.2.39/src/
H A Dclient_svstag.c38 dlinkDelete(&svstag->node, list); in svstag_free()
39 xfree(svstag->tag); in svstag_free()
40 xfree(svstag); in svstag_free()
52 if (svstag->numeric == numeric) in svstag_detach()
53 svstag_free(svstag, list); in svstag_detach()
66 struct ServicesTag *svstag = xcalloc(sizeof(*svstag)); in svstag_attach() local
67 svstag->numeric = numeric; in svstag_attach()
68 svstag->tag = xstrdup(tag); in svstag_attach()
72 svstag->umodes |= tab->flag; in svstag_attach()
75 dlinkAddTail(svstag, &svstag->node, list); in svstag_attach()
[all …]
/dports/irc/ircd-hybrid/ircd-hybrid-8.2.39/modules/
H A Dm_whois.c80 const struct ServicesTag *svstag = NULL; in whois_person() local
161 svstag = target_p->svstags.head->data; in whois_person()
163 if (svstag == NULL || svstag->numeric != RPL_WHOISOPERATOR) in whois_person()
179 svstag = node->data; in whois_person()
181 if (svstag->numeric == RPL_WHOISOPERATOR) in whois_person()
185 if (svstag->umodes == 0 || HasUMode(source_p, svstag->umodes)) in whois_person()
186 sendto_one_numeric(source_p, &me, svstag->numeric | SND_EXPLICIT, "%s :%s", in whois_person()
187 target_p->name, svstag->tag); in whois_person()
/dports/irc/ircd-hybrid/ircd-hybrid-8.2.39/modules/core/
H A Dm_server.c151 const struct ServicesTag *svstag = node->data; in server_send_client() local
155 if (svstag->umodes & tab->flag) in server_send_client()
160 target_p->tsinfo, svstag->numeric, buf, svstag->tag); in server_send_client()