socat/xio-listen.h

25 lines
887 B
C
Raw Normal View History

2008-01-28 21:37:16 +00:00
/* source: xio-listen.h */
/* Copyright Gerhard Rieger and contributors (see file CHANGES) */
2008-01-27 12:00:08 +00:00
/* Published under the GNU General Public License V.2, see file COPYING */
#ifndef __xio_listen_h_included
#define __xio_listen_h_included 1
extern const struct optdesc opt_backlog;
extern const struct optdesc opt_fork;
extern const struct optdesc opt_max_children;
2023-10-26 16:50:29 +00:00
extern const struct optdesc opt_children_shutup;
2008-01-27 12:00:08 +00:00
extern const struct optdesc opt_range;
2020-12-31 13:56:04 +00:00
extern const struct optdesc opt_accept_timeout;
2008-01-27 12:00:08 +00:00
int
xioopen_listen(struct single *xfd, int xioflags,
struct sockaddr *us, socklen_t uslen,
struct opt *opts, struct opt *opts0,
int pf, int socktype, int proto);
int _xioopen_listen(struct single *fd, int xioflags,
struct sockaddr *us, socklen_t uslen,
struct opt *opts, int pf, int socktype, int proto, int level);
#endif /* !defined(__xio_listen_h_included) */