On 2020-02-21 02:46, Jack Wang wrote: > +/** > + * enum rtrs_clt_con_type() type of ib connection to use with a given > + * rtrs_permit > + * @USR_CON - use connection reserved vor "service" messages > + * @IO_CON - use a connection reserved for IO > + */ vor -> for? > +enum rtrs_clt_con_type { > + RTRS_USR_CON, > + RTRS_IO_CON > +}; The name "USR" is confusing. How about changing this into "ADMIN"? > +/* > + * Here goes RTRS server API > + */ How about splitting this header file into one header file for the client API and another header file for the server API? I expect that most users will only include one of these header files but not both. Thanks, Bart.