1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-08-20 12:41:20 +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>
(cherry picked from commit 5e81eec4ec)
This commit is contained in:
David GUGLIELMI
2022-11-01 14:41:06 +01:00
committed by Andreas Schneider
parent 5c5811bf7c
commit 80c994ef72

View File

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