From 7ea8abadec355eb7ea9f71fc2e2bdd73c1c77c62 Mon Sep 17 00:00:00 2001 From: Garrett D'Amore Date: Thu, 21 Nov 2024 22:26:22 -0800 Subject: Use 32-bit port numbers. While TCP and UDP port numbers are 16-bits, ZT uses a larger (24-bit) port number. --- src/core/url.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/url.h') diff --git a/src/core/url.h b/src/core/url.h index 0f5f33c9..5aa53dfd 100644 --- a/src/core/url.h +++ b/src/core/url.h @@ -18,7 +18,7 @@ struct nng_url { const char *u_scheme; // never NULL const char *u_userinfo; // will be NULL if not specified char *u_hostname; // name only, will be "" if not specified - uint16_t u_port; // port, may be zero for schemes that do not use + uint32_t u_port; // port, may be zero for schemes that do not use char *u_path; // path, will be "" if not specified char *u_query; // without '?', will be NULL if not specified char *u_fragment; // without '#', will be NULL if not specified -- cgit v1.2.3-70-g09d2