mirror of
https://github.com/yrutschle/sslh.git
synced 2025-04-04 19:30:04 +03:00
22 lines
427 B
C
22 lines
427 B
C
|
|
|
|
#ifndef CONFIG_H
|
|
/* Template for config.h, filled by `configure`. */
|
|
|
|
/* Libwrap, to support host_ctl, /etc/allow and /etc/deny */
|
|
#undef HAVE_LIBWRAP
|
|
|
|
/* Landlock sandboxing Linux LSM */
|
|
#undef HAVE_LANDLOCK
|
|
|
|
/* Support for Proxy-protocol using libproxyprotocol */
|
|
#undef HAVE_PROXYPROTOCOL
|
|
|
|
/* libcap support, to use Linux capabilities */
|
|
#undef HAVE_LIBCAP
|
|
|
|
/* libbsd, to change process name */
|
|
#undef HAVE_LIBBSD
|
|
|
|
#endif
|