src/irc_conn.h
changeset 25 56367df4ce5b
parent 23 542c73d07d3c
child 27 e6639132bead
equal deleted inserted replaced
24:08a26d0b9afd 25:56367df4ce5b
    31     /* Command handlers */
    31     /* Command handlers */
    32     STAILQ_HEAD(irc_conn_handlers, irc_cmd_chain) handlers;
    32     STAILQ_HEAD(irc_conn_handlers, irc_cmd_chain) handlers;
    33 };
    33 };
    34 
    34 
    35 // XXX: this should probably be slightly reworked
    35 // XXX: this should probably be slightly reworked
       
    36 
       
    37 /**
       
    38  * The configuration info for an IRC connection.
       
    39  *
       
    40  * XXX: this should probably be reworked, maybe as a separate irc_conn_register function?
       
    41  */
    36 struct irc_conn_config {
    42 struct irc_conn_config {
    37     /* Nickname to use on that server */
    43     /* Nickname to use on that server */
    38     const char *nickname;
    44     const char *nickname;
    39 
    45 
    40     /* Username to supply */
    46     /* Username to supply */