nsaddr_t只是IP地址
ns_addr_t同时包含了端口号:
从config.h的代码中可以看出
typedef int32_t nsaddr_t;
typedef int32_t nsmask_t;
/* 32-bit addressing support */
struct ns_addr_t {
int32_t addr_;
int32_t port_;
#ifdef __cplusplus
bool isEqual (ns_addr_t const &o) {
return ((addr_ == o.addr_) && (port_ == o.port_))?true:false;
}
#endif /* __cplusplus */
};
阅读(2749) | 评论(0) | 转发(0) |