mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
77 lines
2.3 KiB
C
77 lines
2.3 KiB
C
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style license that can be
|
||
|
// found in the LICENSE file.
|
||
|
|
||
|
#ifndef NET_BASE_IP_ENDPOINT_H_
|
||
|
#define NET_BASE_IP_ENDPOINT_H_
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
#include "base/compiler_specific.h"
|
||
|
#include "net/base/address_family.h"
|
||
|
#include "net/base/ip_address.h"
|
||
|
#include "net/base/net_export.h"
|
||
|
#include "net/base/sys_addrinfo.h"
|
||
|
|
||
|
struct sockaddr;
|
||
|
|
||
|
namespace net {
|
||
|
|
||
|
// An IPEndPoint represents the address of a transport endpoint:
|
||
|
// * IP address (either v4 or v6)
|
||
|
// * Port
|
||
|
class NET_EXPORT IPEndPoint {
|
||
|
public:
|
||
|
IPEndPoint();
|
||
|
~IPEndPoint();
|
||
|
IPEndPoint(const IPAddress& address, uint16_t port);
|
||
|
IPEndPoint(const IPEndPoint& endpoint);
|
||
|
|
||
|
const IPAddress& address() const { return address_; }
|
||
|
uint16_t port() const { return port_; }
|
||
|
|
||
|
// Returns AddressFamily of the address.
|
||
|
AddressFamily GetFamily() const;
|
||
|
|
||
|
// Returns the sockaddr family of the address, AF_INET or AF_INET6.
|
||
|
int GetSockAddrFamily() const;
|
||
|
|
||
|
// Convert to a provided sockaddr struct.
|
||
|
// |address| is the sockaddr to copy into. Should be at least
|
||
|
// sizeof(struct sockaddr_storage) bytes.
|
||
|
// |address_length| is an input/output parameter. On input, it is the
|
||
|
// size of data in |address| available. On output, it is the size of
|
||
|
// the address that was copied into |address|.
|
||
|
// Returns true on success, false on failure.
|
||
|
bool ToSockAddr(struct sockaddr* address, socklen_t* address_length) const
|
||
|
WARN_UNUSED_RESULT;
|
||
|
|
||
|
// Convert from a sockaddr struct.
|
||
|
// |address| is the address.
|
||
|
// |address_length| is the length of |address|.
|
||
|
// Returns true on success, false on failure.
|
||
|
bool FromSockAddr(const struct sockaddr* address, socklen_t address_length)
|
||
|
WARN_UNUSED_RESULT;
|
||
|
|
||
|
// Returns value as a string (e.g. "127.0.0.1:80"). Returns the empty string
|
||
|
// when |address_| is invalid (the port will be ignored).
|
||
|
std::string ToString() const;
|
||
|
|
||
|
// As above, but without port. Returns the empty string when address_ is
|
||
|
// invalid.
|
||
|
std::string ToStringWithoutPort() const;
|
||
|
|
||
|
bool operator<(const IPEndPoint& that) const;
|
||
|
bool operator==(const IPEndPoint& that) const;
|
||
|
|
||
|
private:
|
||
|
IPAddress address_;
|
||
|
uint16_t port_;
|
||
|
};
|
||
|
|
||
|
} // namespace net
|
||
|
|
||
|
#endif // NET_BASE_IP_ENDPOINT_H_
|