net/StaticSocketAddress: remove unused method SetLocal()
This commit is contained in:
parent
d1b1a8e490
commit
a4a37d7a19
@ -32,16 +32,8 @@
|
|||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
|
||||||
#include <assert.h>
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#ifdef WIN32
|
|
||||||
#include <ws2tcpip.h>
|
|
||||||
#else
|
|
||||||
#include <sys/un.h>
|
|
||||||
#include <sys/socket.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
StaticSocketAddress &
|
StaticSocketAddress &
|
||||||
StaticSocketAddress::operator=(SocketAddress other)
|
StaticSocketAddress::operator=(SocketAddress other)
|
||||||
{
|
{
|
||||||
@ -56,24 +48,3 @@ StaticSocketAddress::operator==(const StaticSocketAddress &other) const
|
|||||||
return size == other.size &&
|
return size == other.size &&
|
||||||
memcmp(&address, &other.address, size) == 0;
|
memcmp(&address, &other.address, size) == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(HAVE_UN) && !defined(__BIONIC__)
|
|
||||||
|
|
||||||
void
|
|
||||||
StaticSocketAddress::SetLocal(const char *path)
|
|
||||||
{
|
|
||||||
auto &sun = reinterpret_cast<struct sockaddr_un &>(address);
|
|
||||||
|
|
||||||
const size_t path_length = strlen(path);
|
|
||||||
|
|
||||||
// TODO: make this a runtime check
|
|
||||||
assert(path_length < sizeof(sun.sun_path));
|
|
||||||
|
|
||||||
sun.sun_family = AF_LOCAL;
|
|
||||||
memcpy(sun.sun_path, path, path_length + 1);
|
|
||||||
|
|
||||||
/* note: Bionic doesn't provide SUN_LEN() */
|
|
||||||
size = SUN_LEN(&sun);
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
@ -31,7 +31,6 @@
|
|||||||
#define STATIC_SOCKET_ADDRESS_HXX
|
#define STATIC_SOCKET_ADDRESS_HXX
|
||||||
|
|
||||||
#include "SocketAddress.hxx"
|
#include "SocketAddress.hxx"
|
||||||
#include "Features.hxx"
|
|
||||||
#include "Compiler.h"
|
#include "Compiler.h"
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
@ -57,13 +56,6 @@ public:
|
|||||||
size);
|
size);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(HAVE_UN) && !defined(__BIONIC__)
|
|
||||||
/**
|
|
||||||
* Make this a "local" address (UNIX domain socket).
|
|
||||||
*/
|
|
||||||
void SetLocal(const char *path);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
operator struct sockaddr *() {
|
operator struct sockaddr *() {
|
||||||
return reinterpret_cast<struct sockaddr *>(&address);
|
return reinterpret_cast<struct sockaddr *>(&address);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user