src/irc_net.h
changeset 98 f357f835f0d5
parent 86 5e7e64544cb7
child 140 aa390e52eda8
equal deleted inserted replaced
97:d3bc82ee76cb 98:f357f835f0d5
    74 /**
    74 /**
    75  * Create a new IRC network state, using the given network info to connect/register.
    75  * Create a new IRC network state, using the given network info to connect/register.
    76  *
    76  *
    77  * Errors are returned via *err, also returning the error code.
    77  * Errors are returned via *err, also returning the error code.
    78  *
    78  *
       
    79  * The irc_net_info struct itself is copied, but the strings contained therein are not...
       
    80  *
    79  * @param net the new irc_net struct is returned via this pointer
    81  * @param net the new irc_net struct is returned via this pointer
    80  * @param info network information, used to connect and register
    82  * @param info network information, used to connect and register
    81  * @param err return error info
    83  * @param err return error info
    82  */
    84  */
    83 err_t irc_net_create (struct irc_net **net, const struct irc_net_info *info, struct error_info *err);
    85 err_t irc_net_create (struct irc_net **net, const struct irc_net_info *info, struct error_info *err);