src/irc_net.h
changeset 48 4841f4398fd2
parent 47 7d4094eb3117
child 53 12d806823775
equal deleted inserted replaced
47:7d4094eb3117 48:4841f4398fd2
    76  * @param net the network state
    76  * @param net the network state
    77  * @param channel the channel name
    77  * @param channel the channel name
    78  */
    78  */
    79 struct irc_chan* irc_net_get_chan (struct irc_net *net, const char *channel);
    79 struct irc_chan* irc_net_get_chan (struct irc_net *net, const char *channel);
    80 
    80 
       
    81 /**
       
    82  * Quit from the IRC network, this sends a QUIT message to the server, and waits for the connection to be closed cleanly.
       
    83  */
       
    84 err_t irc_net_quit (struct irc_net *net, const char *message);
       
    85 
    81 #endif
    86 #endif