diff options
Diffstat (limited to 'proxy/src/gssproxy.c')
-rw-r--r-- | proxy/src/gssproxy.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/proxy/src/gssproxy.c b/proxy/src/gssproxy.c index d128d2b..c46edcd 100644 --- a/proxy/src/gssproxy.c +++ b/proxy/src/gssproxy.c @@ -101,6 +101,12 @@ int main(int argc, const char *argv[]) return 1; } + vflags = VERTO_EV_FLAG_PERSIST | VERTO_EV_FLAG_IO_READ; + ev = verto_add_io(vctx, vflags, accept_sock_conn, fd); + if (!ev) { + return 1; + } + verto_run(vctx); fini_server(); |