]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
BUILD: proto_tcp: export the correct names for proto_tcpv[46]
authorWilly Tarreau <w@1wt.eu>
Sat, 22 Apr 2023 13:26:02 +0000 (15:26 +0200)
committerWilly Tarreau <w@1wt.eu>
Sun, 23 Apr 2023 07:46:15 +0000 (09:46 +0200)
The exported names were not correct (missing the 'v').

include/haproxy/proto_tcp.h

index 52566dbf3520506aa63efd9e53aaba33e1dc05fd..8a3d9fd2707c73ee65143d4c4abf73ef6da2014f 100644 (file)
@@ -28,8 +28,8 @@
 #include <haproxy/listener-t.h>
 #include <haproxy/sample-t.h>
 
-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);