Home
last modified time | relevance | path

Searched refs:tmpOP_channel (Results 1 – 2 of 2) sorted by relevance

/dports/games/pvpgn/pvpgn-1.8.5/src/bnetd/
H A Dconnection.h171 char const * tmpOP_channel; member
429 extern int conn_set_tmpOP_channel(t_connection * c, char const * tmpOP_channel);
H A Dconnection.c427 temp->protocol.chat.tmpOP_channel = NULL; in conn_create()
642 if (c->protocol.chat.tmpOP_channel) in conn_destroy()
643 xfree((void *)c->protocol.chat.tmpOP_channel); /* avoid warning */ in conn_destroy()
3675 extern int conn_set_tmpOP_channel(t_connection * c, char const * tmpOP_channel) in conn_set_tmpOP_channel() argument
3683 if (c->protocol.chat.tmpOP_channel) in conn_set_tmpOP_channel()
3685 xfree((void *)c->protocol.chat.tmpOP_channel); in conn_set_tmpOP_channel()
3686 c->protocol.chat.tmpOP_channel = NULL; in conn_set_tmpOP_channel()
3689 if (tmpOP_channel) in conn_set_tmpOP_channel()
3690 c->protocol.chat.tmpOP_channel = xstrdup(tmpOP_channel); in conn_set_tmpOP_channel()
3703 return c->protocol.chat.tmpOP_channel; in conn_get_tmpOP_channel()