Home | History | Annotate | Download | only in base

Lines Matching refs:port_

17 IPEndPoint::IPEndPoint() : port_(0) {}
23 port_(port) {}
27 port_ = endpoint.port_;
57 addr->sin_port = htons(port_);
69 addr6->sin6_port = htons(port_);
88 port_ = ntohs(addr->sin_port);
96 port_ = ntohs(addr->sin6_port);
127 return port_ < that.port_;
131 return address_ == that.address_ && port_ == that.port_;