mirror of https://gitee.com/bigwinds/arangodb
674 lines
24 KiB
C++
674 lines
24 KiB
C++
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief connection endpoint specification
|
|
///
|
|
/// @file
|
|
///
|
|
/// DISCLAIMER
|
|
///
|
|
/// Copyright 2010-2011 triagens GmbH, Cologne, Germany
|
|
///
|
|
/// Licensed under the Apache License, Version 2.0 (the "License");
|
|
/// you may not use this file except in compliance with the License.
|
|
/// You may obtain a copy of the License at
|
|
///
|
|
/// http://www.apache.org/licenses/LICENSE-2.0
|
|
///
|
|
/// Unless required by applicable law or agreed to in writing, software
|
|
/// distributed under the License is distributed on an "AS IS" BASIS,
|
|
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
/// See the License for the specific language governing permissions and
|
|
/// limitations under the License.
|
|
///
|
|
/// Copyright holder is triAGENS GmbH, Cologne, Germany
|
|
///
|
|
/// @author Jan Steemann
|
|
/// @author Copyright 2012, triAGENS GmbH, Cologne, Germany
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "EndpointSpecification.h"
|
|
|
|
#include <netinet/in.h>
|
|
#include <sys/file.h>
|
|
|
|
#include "BasicsC/socket-utils.h"
|
|
|
|
#include "Basics/StringUtils.h"
|
|
#include "Basics/FileUtils.h"
|
|
#include "Logger/Logger.h"
|
|
|
|
using namespace triagens::basics;
|
|
using namespace triagens::rest;
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- EndpointSpecification
|
|
// -----------------------------------------------------------------------------
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @addtogroup Rest
|
|
/// @{
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief set default port number
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
const uint16_t EndpointSpecification::_defaultPort = 8529;
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- constructors / destructors
|
|
// -----------------------------------------------------------------------------
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @addtogroup Rest
|
|
/// @{
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief create an endpoint
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
EndpointSpecification::EndpointSpecification (const EndpointType type,
|
|
const EndpointDomainType domainType,
|
|
const string& specification) :
|
|
_connected(false),
|
|
_socket(0),
|
|
_type(type),
|
|
_domainType(domainType),
|
|
_specification(specification) {
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief destroy an endpoint
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
EndpointSpecification::~EndpointSpecification () {
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- public methods
|
|
// -----------------------------------------------------------------------------
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @addtogroup Rest
|
|
/// @{
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief create a client endpoint object from a string value
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
EndpointSpecification* EndpointSpecification::clientFactory (const string& specification) {
|
|
return EndpointSpecification::factory(ENDPOINT_CLIENT, specification);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief create a server endpoint object from a string value
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
EndpointSpecification* EndpointSpecification::serverFactory (const string& specification) {
|
|
return EndpointSpecification::factory(ENDPOINT_SERVER, specification);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief create an endpoint object from a string value
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
EndpointSpecification* EndpointSpecification::factory (const EndpointType type,
|
|
const string& specification) {
|
|
if (specification.size() < 7) {
|
|
return 0;
|
|
}
|
|
|
|
string copy = specification;
|
|
if (specification[specification.size() - 1] == '/') {
|
|
// address ends with a slash => remove
|
|
copy = copy.substr(0, copy.size() - 1);
|
|
}
|
|
|
|
string proto = StringUtils::tolower(copy.substr(0, 7));
|
|
if (StringUtils::isPrefix(proto, "unix://")) {
|
|
// unix socket
|
|
return new EndpointSpecificationUnix(type, specification, copy.substr(7, copy.size() - 7));
|
|
}
|
|
else if (! StringUtils::isPrefix(proto, "tcp://")) {
|
|
// invalid type
|
|
return 0;
|
|
}
|
|
|
|
// tcp/ip
|
|
copy = copy.substr(6, copy.length() - 6);
|
|
size_t found;
|
|
|
|
if (copy[0] == '[') {
|
|
// ipv6
|
|
found = copy.find("]:", 1);
|
|
if (found != string::npos && found + 2 < copy.size()) {
|
|
// hostname and port (e.g. [address]:port)
|
|
uint16_t port = (uint16_t) StringUtils::uint32(copy.substr(found + 2));
|
|
|
|
return new EndpointSpecificationIpV6(type, specification, copy.substr(1, found - 1), port);
|
|
}
|
|
|
|
found = copy.find("]", 1);
|
|
if (found != string::npos && found + 1 == copy.size()) {
|
|
// hostname only (e.g. [address])
|
|
|
|
return new EndpointSpecificationIpV6(type, specification, copy.substr(1, found - 1), _defaultPort);
|
|
}
|
|
|
|
// invalid address specification
|
|
return 0;
|
|
}
|
|
|
|
// ipv4
|
|
found = copy.find(':');
|
|
|
|
if (found != string::npos && found + 1 < copy.size()) {
|
|
// hostname and port
|
|
uint16_t port = (uint16_t) StringUtils::uint32(copy.substr(found + 1));
|
|
|
|
return new EndpointSpecificationIpV4(type, specification, copy.substr(0, found), port);
|
|
}
|
|
|
|
// hostname only
|
|
return new EndpointSpecificationIpV4(type, specification, copy, _defaultPort);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief compare two endpoints
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool EndpointSpecification::operator== (EndpointSpecification const &that) const {
|
|
return getSpecification() == that.getSpecification();
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief set common socket flags
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool EndpointSpecification::setSocketFlags (socket_t _socket) {
|
|
// set to non-blocking, executed for both client and server endpoints
|
|
bool ok = TRI_SetNonBlockingSocket(_socket);
|
|
if (!ok) {
|
|
LOGGER_ERROR << "cannot switch to non-blocking: " << errno << " (" << strerror(errno) << ")";
|
|
|
|
return false;
|
|
}
|
|
|
|
// set close-on-exec flag, executed for both client and server endpoints
|
|
ok = TRI_SetCloseOnExecSocket(_socket);
|
|
if (!ok) {
|
|
LOGGER_ERROR << "cannot set close-on-exit: " << errno << " (" << strerror(errno) << ")";
|
|
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifdef TRI_HAVE_LINUX_SOCKETS
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- EndpointSpecificationUnix
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- constructors / destructors
|
|
// -----------------------------------------------------------------------------
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @addtogroup Rest
|
|
/// @{
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief creates a Unix socket endpoint
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
EndpointSpecificationUnix::EndpointSpecificationUnix (const EndpointType type,
|
|
string const& specification,
|
|
string const& path) :
|
|
EndpointSpecification(type, ENDPOINT_UNIX, specification),
|
|
_path(path) {
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief destroys a Unix socket endpoint
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
EndpointSpecificationUnix::~EndpointSpecificationUnix () {
|
|
if (_connected) {
|
|
disconnect();
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- public methods
|
|
// -----------------------------------------------------------------------------
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @addtogroup Rest
|
|
/// @{
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief connect the endpoint
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
socket_t EndpointSpecificationUnix::connect () {
|
|
assert(_socket == 0);
|
|
assert(!_connected);
|
|
|
|
if (_type == ENDPOINT_SERVER && FileUtils::exists(_path)) {
|
|
// socket file already exists
|
|
LOGGER_WARNING << "socket file '" << _path << "' already exists.";
|
|
|
|
int error = 0;
|
|
// delete previously existing socket file
|
|
if (FileUtils::remove(_path, &error)) {
|
|
LOGGER_WARNING << "deleted previously existing socket file '" << _path << "'.";
|
|
}
|
|
else {
|
|
LOGGER_ERROR << "unable to delete previously existing socket file '" << _path << "'.";
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
int listenSocket = socket(AF_UNIX, SOCK_STREAM, 0);
|
|
if (listenSocket == -1) {
|
|
return 0;
|
|
}
|
|
|
|
// reuse address
|
|
int opt = 1;
|
|
|
|
if (setsockopt(listenSocket, SOL_SOCKET, SO_REUSEADDR, reinterpret_cast<char*> (&opt), sizeof (opt)) == -1) {
|
|
LOGGER_ERROR << "setsockopt failed with " << errno << " (" << strerror(errno) << ")";
|
|
|
|
close(listenSocket);
|
|
|
|
return 0;
|
|
}
|
|
LOGGER_TRACE << "reuse address flag set";
|
|
|
|
struct sockaddr_un address;
|
|
|
|
memset(&address, 0, sizeof(address));
|
|
address.sun_family = AF_UNIX;
|
|
snprintf(address.sun_path, 100, "%s", _path.c_str());
|
|
|
|
if (_type == ENDPOINT_SERVER) {
|
|
int result = bind(listenSocket, (struct sockaddr*) &address, SUN_LEN(&address));
|
|
if (result != 0) {
|
|
// bind error
|
|
close(listenSocket);
|
|
|
|
return 0;
|
|
}
|
|
|
|
// listen for new connection, executed for server endpoints only
|
|
result = listen(listenSocket, 10);
|
|
|
|
if (result < 0) {
|
|
close(listenSocket);
|
|
|
|
LOGGER_ERROR << "listen failed with " << errno << " (" << strerror(errno) << ")";
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
else if (_type == ENDPOINT_CLIENT) {
|
|
// connect to endpoint, executed for client endpoints only
|
|
::connect(listenSocket, (const struct sockaddr*) &address, SUN_LEN(&address));
|
|
}
|
|
|
|
if (!setSocketFlags(listenSocket)) {
|
|
close(listenSocket);
|
|
|
|
return 0;
|
|
}
|
|
|
|
_connected = true;
|
|
_socket = listenSocket;
|
|
|
|
return _socket;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief disconnect the endpoint
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void EndpointSpecificationUnix::disconnect () {
|
|
if (_connected) {
|
|
assert(_socket);
|
|
|
|
_connected = false;
|
|
close(_socket);
|
|
|
|
_socket = 0;
|
|
|
|
if (_type == ENDPOINT_SERVER) {
|
|
int error = 0;
|
|
FileUtils::remove(_path, &error);
|
|
}
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief init an incoming connection
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool EndpointSpecificationUnix::initIncoming (socket_t incoming) {
|
|
return setSocketFlags(incoming);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#endif
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- EndpointSpecificationIp
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- constructors / destructors
|
|
// -----------------------------------------------------------------------------
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @addtogroup Rest
|
|
/// @{
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief creates an IP socket endpoint
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
EndpointSpecificationIp::EndpointSpecificationIp (const EndpointType type,
|
|
const EndpointDomainType domainType,
|
|
string const& specification,
|
|
string const& host,
|
|
const uint16_t port) :
|
|
EndpointSpecification(type, domainType, specification), _host(host), _port(port) {
|
|
|
|
assert(domainType == ENDPOINT_IPV4 || domainType == ENDPOINT_IPV6);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief destroys an IPv4 socket endpoint
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
EndpointSpecificationIp::~EndpointSpecificationIp () {
|
|
if (_connected) {
|
|
disconnect();
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- private methods
|
|
// -----------------------------------------------------------------------------
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @addtogroup Rest
|
|
/// @{
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
socket_t EndpointSpecificationIp::connectSocket (const struct addrinfo* aip) {
|
|
// set address and port
|
|
char host[NI_MAXHOST], serv[NI_MAXSERV];
|
|
if (getnameinfo(aip->ai_addr, aip->ai_addrlen,
|
|
host, sizeof(host),
|
|
serv, sizeof(serv), NI_NUMERICHOST | NI_NUMERICSERV) == 0) {
|
|
|
|
LOGGER_TRACE << "bind to address '" << string(host) << "' port '" << _port << "'";
|
|
}
|
|
|
|
int listenSocket = socket(aip->ai_family, aip->ai_socktype, aip->ai_protocol);
|
|
if (listenSocket == -1) {
|
|
return 0;
|
|
}
|
|
|
|
// try to reuse address
|
|
int opt = 1;
|
|
|
|
if (setsockopt(listenSocket, SOL_SOCKET, SO_REUSEADDR, reinterpret_cast<char*> (&opt), sizeof (opt)) == -1) {
|
|
LOGGER_ERROR << "setsockopt failed with " << errno << " (" << strerror(errno) << ")";
|
|
|
|
close(listenSocket);
|
|
|
|
return 0;
|
|
}
|
|
LOGGER_TRACE << "reuse address flag set";
|
|
|
|
if (_type == ENDPOINT_SERVER) {
|
|
// server needs to bind to socket
|
|
int result = bind(listenSocket, aip->ai_addr, aip->ai_addrlen);
|
|
if (result != 0) {
|
|
// error
|
|
close(listenSocket);
|
|
|
|
return 0;
|
|
}
|
|
// listen for new connection, executed for server endpoints only
|
|
result = listen(listenSocket, 10);
|
|
if (result < 0) {
|
|
close(listenSocket);
|
|
|
|
LOGGER_ERROR << "listen failed with " << errno << " (" << strerror(errno) << ")";
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
else if (_type == ENDPOINT_CLIENT) {
|
|
// connect to endpoint, executed for client endpoints only
|
|
::connect(listenSocket, (const struct sockaddr*) aip->ai_addr, aip->ai_addrlen);
|
|
}
|
|
|
|
if (!setSocketFlags(listenSocket)) {
|
|
close(listenSocket);
|
|
|
|
return 0;
|
|
}
|
|
|
|
_connected = true;
|
|
_socket = listenSocket;
|
|
|
|
return _socket;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- public methods
|
|
// -----------------------------------------------------------------------------
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @addtogroup Rest
|
|
/// @{
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief connect the endpoint
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
socket_t EndpointSpecificationIp::connect () {
|
|
struct addrinfo* result = 0;
|
|
struct addrinfo* aip;
|
|
struct addrinfo hints;
|
|
int error;
|
|
|
|
assert(_socket == 0);
|
|
assert(!_connected);
|
|
|
|
memset(&hints, 0, sizeof (struct addrinfo));
|
|
hints.ai_family = getDomain(); // Allow IPv4 or IPv6
|
|
hints.ai_flags = AI_PASSIVE | AI_NUMERICSERV | AI_ALL;
|
|
hints.ai_socktype = SOCK_STREAM;
|
|
|
|
string portString = StringUtils::itoa(_port);
|
|
|
|
error = getaddrinfo(_host.c_str(), portString.c_str(), &hints, &result);
|
|
|
|
if (error != 0) {
|
|
LOGGER_ERROR << "getaddrinfo for host: " << _host.c_str() << " => " << gai_strerror(error);
|
|
|
|
if (result != 0) {
|
|
freeaddrinfo(result);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int listenSocket = 0;
|
|
|
|
// Try all returned addresses until one works
|
|
for (aip = result; aip != NULL; aip = aip->ai_next) {
|
|
// try to bind the address info pointer
|
|
listenSocket = connectSocket(aip);
|
|
if (listenSocket != 0) {
|
|
// OK
|
|
break;
|
|
}
|
|
}
|
|
|
|
freeaddrinfo(result);
|
|
|
|
return listenSocket;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief destroys an IPv4 socket endpoint
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void EndpointSpecificationIp::disconnect () {
|
|
if (_connected) {
|
|
assert(_socket);
|
|
|
|
_connected = false;
|
|
close(_socket);
|
|
|
|
_socket = 0;
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief init an incoming connection
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool EndpointSpecificationIp::initIncoming (socket_t incoming) {
|
|
// disable nagle's algorithm
|
|
int n = 1;
|
|
int res = setsockopt(incoming, IPPROTO_TCP, TCP_NODELAY, (char*) &n, sizeof(n));
|
|
|
|
if (res != 0 ) {
|
|
LOGGER_WARNING << "setsockopt failed with " << errno << " (" << strerror(errno) << ")";
|
|
|
|
return false;
|
|
}
|
|
|
|
return setSocketFlags(incoming);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- EndpointSpecificationIpV4
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- constructors / destructors
|
|
// -----------------------------------------------------------------------------
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @addtogroup Rest
|
|
/// @{
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief creates an IPv4 socket endpoint
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
EndpointSpecificationIpV4::EndpointSpecificationIpV4 (const EndpointType type,
|
|
string const& specification,
|
|
string const& host,
|
|
const uint16_t port) :
|
|
EndpointSpecificationIp(type, ENDPOINT_IPV4, specification, host, port) {
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief destroys an IPv4 socket endpoint
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
EndpointSpecificationIpV4::~EndpointSpecificationIpV4 () {
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- EndpointSpecificationIpV6
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- constructors / destructors
|
|
// -----------------------------------------------------------------------------
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @addtogroup Rest
|
|
/// @{
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief creates an IPv6 socket endpoint
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
EndpointSpecificationIpV6::EndpointSpecificationIpV6 (const EndpointType type,
|
|
string const& specification,
|
|
string const& host,
|
|
const uint16_t port) :
|
|
EndpointSpecificationIp(type, ENDPOINT_IPV6, specification, host, port) {
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief destroys an IPv6 socket endpoint
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
EndpointSpecificationIpV6::~EndpointSpecificationIpV6 () {
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Local Variables:
|
|
// mode: outline-minor
|
|
// outline-regexp: "^\\(/// @brief\\|/// {@inheritDoc}\\|/// @addtogroup\\|// --SECTION--\\|/// @\\}\\)"
|
|
// End:
|