HomeSort by relevance Sort by last modified time
    Searched defs:IPEndPoint (Results 1 - 2 of 2) sorted by null

  /external/chromium/net/base/
ip_endpoint.h 16 // An IPEndPoint represents the address of a transport endpoint:
19 class IPEndPoint {
21 IPEndPoint();
22 virtual ~IPEndPoint();
23 IPEndPoint(const IPAddressNumber& address, int port);
24 IPEndPoint(const IPEndPoint& endpoint);
52 bool operator<(const IPEndPoint& that) const;
53 bool operator==(const IPEndPoint& that) const;
ip_endpoint.cc 17 IPEndPoint::IPEndPoint() : port_(0) {}
19 IPEndPoint::~IPEndPoint() {}
21 IPEndPoint::IPEndPoint(const IPAddressNumber& address, int port)
25 IPEndPoint::IPEndPoint(const IPEndPoint& endpoint) {
30 int IPEndPoint::GetFamily() const
    [all...]

Completed in 214 milliseconds