diff --git a/include/types/ssl_crtlist.h b/include/haproxy/ssl_crtlist-t.h similarity index 92% rename from include/types/ssl_crtlist.h rename to include/haproxy/ssl_crtlist-t.h index ed8c135ae..6ca48b5d9 100644 --- a/include/types/ssl_crtlist.h +++ b/include/haproxy/ssl_crtlist-t.h @@ -1,5 +1,5 @@ /* - * include/types/ssl_crtlist.h + * include/haproxy/ssl_crtlist-t.h * crt-list structures * * Copyright (C) 2020 HAProxy Technologies, William Lallemand @@ -19,11 +19,12 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef _TYPES_SSL_CRTLIST_H -#define _TYPES_SSL_CRTLIST_H +#ifndef _HAPROXY_SSL_CRTLIST_T_H +#define _HAPROXY_SSL_CRTLIST_T_H #ifdef USE_OPENSSL #include +#include #include @@ -61,4 +62,4 @@ struct crtlist_entry { }; #endif /* USE_OPENSSL */ -#endif /* _TYPES_SSL_CRTLIST_H */ +#endif /* _HAPROXY_SSL_CRTLIST_T_H */ diff --git a/include/proto/ssl_crtlist.h b/include/haproxy/ssl_crtlist.h similarity index 90% rename from include/proto/ssl_crtlist.h rename to include/haproxy/ssl_crtlist.h index 5b75ac7aa..1650ddc32 100644 --- a/include/proto/ssl_crtlist.h +++ b/include/haproxy/ssl_crtlist.h @@ -1,5 +1,5 @@ /* - * include/proto/ssl_crtlist.h + * include/haproxy/ssl_crtlist.h * crt-list function prototyes * * Copyright (C) 2020 HAProxy Technologies, William Lallemand @@ -19,11 +19,11 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef _PROTO_SSL_CRTLIST_H -#define _PROTO_SSL_CRTLIST_H +#ifndef _HAPROXY_SSL_CRTLIST_H +#define _HAPROXY_SSL_CRTLIST_H #ifdef USE_OPENSSL -#include +#include /* crt-list entry functions */ @@ -42,4 +42,4 @@ int crtlist_parse_line(char *line, char **crt_path, struct crtlist_entry *entry, int crtlist_parse_file(char *file, struct bind_conf *bind_conf, struct proxy *curproxy, struct crtlist **crtlist, char **err); int crtlist_load_cert_dir(char *path, struct bind_conf *bind_conf, struct crtlist **crtlist, char **err); #endif /* USE_OPENSSL */ -#endif /* _PROTO_SSL_CRTLIST_H */ +#endif /* _HAPROXY_SSL_CRTLIST_H */ diff --git a/include/types/ssl_sock.h b/include/types/ssl_sock.h index bea2a1603..b535e4d3b 100644 --- a/include/types/ssl_sock.h +++ b/include/types/ssl_sock.h @@ -28,13 +28,13 @@ #include #include /* struct wait_event */ -#include #include #include #include #include #include +#include /* ***** READ THIS before adding code here! ***** * diff --git a/src/ssl_crtlist.c b/src/ssl_crtlist.c index d8362259a..9d0e1e7c5 100644 --- a/src/ssl_crtlist.c +++ b/src/ssl_crtlist.c @@ -17,6 +17,7 @@ #include #include +#include #include #include @@ -24,13 +25,11 @@ #include #include -#include #include #include #include #include -#include #include /* release ssl bind conf */ diff --git a/src/ssl_sock.c b/src/ssl_sock.c index 86eede351..efab3af01 100644 --- a/src/ssl_sock.c +++ b/src/ssl_sock.c @@ -52,6 +52,7 @@ #include #include #include +#include #include #include #include @@ -82,7 +83,6 @@ #include #include #include -#include #include #include #include