mirror of
https://gitlab.com/openconnect/ocserv.git
synced 2026-02-10 00:37:00 +08:00
13 lines
333 B
C
13 lines
333 B
C
#ifndef MAIN_CTL_HANDLER_H
|
|
# define MAIN_CTL_HANDLER_H
|
|
|
|
#include <ctl.h>
|
|
|
|
int ctl_handler_init(main_server_st* s);
|
|
void ctl_handler_deinit(main_server_st* s);
|
|
|
|
int ctl_handler_set_fds(main_server_st* s, fd_set *rd_set, fd_set *wr_set);
|
|
void ctl_handler_run_pending(main_server_st* s, fd_set *rd_set, fd_set *wr_set);
|
|
|
|
#endif
|