[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: [ns] nsaddrs_t
This is the definition in config.h
typedef int32_t nsaddr_t;
so nsaddr_t is another name for int32_t, that is another name for the
primitive int.
There is also ns_addr_t that is a structure to model a socket
struct ns_addr_t {
int32_t addr_;
int32_t port_;
}
But, about port, I don't know in which way they are used.
For example, in PagePool/WebTraff, does a webclient try to connect to port
80 on a webserver?
bye,
Sergio