From df4051cd58dad57dc56230877557a4a469b3a3c0 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Sat, 22 Apr 2023 15:26:02 +0200 Subject: [PATCH] BUILD: proto_tcp: export the correct names for proto_tcpv[46] The exported names were not correct (missing the 'v'). --- include/haproxy/proto_tcp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/haproxy/proto_tcp.h b/include/haproxy/proto_tcp.h index 52566dbf3..8a3d9fd27 100644 --- a/include/haproxy/proto_tcp.h +++ b/include/haproxy/proto_tcp.h @@ -28,8 +28,8 @@ #include #include -extern struct protocol proto_tcp4; -extern struct protocol proto_tcp6; +extern struct protocol proto_tcpv4; +extern struct protocol proto_tcpv6; int tcp_bind_socket(int fd, int flags, struct sockaddr_storage *local, struct sockaddr_storage *remote); int tcp_connect_server(struct connection *conn, int flags);