1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-07-29 13:01:13 +03:00

examples: fix htons implicit declaration in sshd_direct-tcpip

Signed-off-by: David GUGLIELMI <david.guglielmi@gmail.com>
Reviewed-by: Jakub Jelen <jjelen@redhat.com>
This commit is contained in:
David GUGLIELMI
2022-11-01 14:41:06 +01:00
committed by Jakub Jelen
parent 06a0a957c9
commit 5e81eec4ec

View File

@ -27,6 +27,9 @@ clients must be made or how a client should react.
#ifdef HAVE_ARGP_H #ifdef HAVE_ARGP_H
#include <argp.h> #include <argp.h>
#endif #endif
#ifndef _WIN32
#include <netinet/in.h>
#endif
#include <sys/types.h> #include <sys/types.h>
#include <sys/socket.h> #include <sys/socket.h>
#include <stdbool.h> #include <stdbool.h>