The 'named_g_http_listener_clients' and 'named_g_http_streams_per_conn'
global variables are defined as 'in_port_t', which is usually 16 bits,
but both the readers and the writers of those variables use 'uint32_t'
as the target/source, which can result in truncation.
Use correct types.
EXTERN in_port_t named_g_httpsport INIT(0);
EXTERN in_port_t named_g_httpport INIT(0);
-EXTERN in_port_t named_g_http_listener_clients INIT(0);
-EXTERN in_port_t named_g_http_streams_per_conn INIT(0);
+EXTERN uint32_t named_g_http_listener_clients INIT(0);
+EXTERN uint32_t named_g_http_streams_per_conn INIT(0);
EXTERN named_server_t *named_g_server INIT(NULL);