2016-02-09 00:11:00 +01:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2016, Arvid Norberg
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of the author nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TORRENT_BIND_TO_DEVICE_HPP_INCLUDED
|
|
|
|
#define TORRENT_BIND_TO_DEVICE_HPP_INCLUDED
|
|
|
|
|
|
|
|
#include "libtorrent/config.hpp"
|
|
|
|
#include "libtorrent/socket.hpp"
|
|
|
|
|
|
|
|
#if TORRENT_USE_IFCONF || TORRENT_USE_NETLINK || TORRENT_USE_SYSCTL
|
|
|
|
#include <sys/socket.h> // for SO_BINDTODEVICE
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace libtorrent { namespace aux {
|
|
|
|
|
|
|
|
#if defined SO_BINDTODEVICE
|
|
|
|
|
|
|
|
struct bind_to_device
|
|
|
|
{
|
2016-10-08 20:07:11 +02:00
|
|
|
explicit bind_to_device(char const* device): m_value(device) {}
|
2016-02-09 00:11:00 +01:00
|
|
|
template<class Protocol>
|
|
|
|
int level(Protocol const&) const { return SOL_SOCKET; }
|
|
|
|
template<class Protocol>
|
|
|
|
int name(Protocol const&) const { return SO_BINDTODEVICE; }
|
|
|
|
template<class Protocol>
|
|
|
|
char const* data(Protocol const&) const { return m_value; }
|
|
|
|
template<class Protocol>
|
|
|
|
size_t size(Protocol const&) const { return strlen(m_value) + 1; }
|
|
|
|
private:
|
|
|
|
char const* m_value;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define TORRENT_HAS_BINDTODEVICE 1
|
|
|
|
|
|
|
|
#elif defined IP_BOUND_IF
|
|
|
|
|
|
|
|
struct bind_to_device
|
|
|
|
{
|
2016-10-08 20:07:11 +02:00
|
|
|
explicit bind_to_device(char const* device): m_value(if_nametoindex(device)) {}
|
2016-02-09 00:11:00 +01:00
|
|
|
template<class Protocol>
|
|
|
|
int level(Protocol const&) const { return IPPROTO_IP; }
|
|
|
|
template<class Protocol>
|
|
|
|
int name(Protocol const&) const { return IP_BOUND_IF; }
|
|
|
|
template<class Protocol>
|
|
|
|
char const* data(Protocol const&) const { return reinterpret_cast<char const*>(&m_value); }
|
|
|
|
template<class Protocol>
|
|
|
|
size_t size(Protocol const&) const { return sizeof(m_value); }
|
|
|
|
private:
|
|
|
|
unsigned int m_value;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define TORRENT_HAS_BINDTODEVICE 1
|
|
|
|
|
|
|
|
#elif defined IP_FORCE_OUT_IFP
|
|
|
|
|
|
|
|
struct bind_to_device
|
|
|
|
{
|
2016-10-08 20:07:11 +02:00
|
|
|
explicit bind_to_device(char const* device): m_value(device) {}
|
2016-02-09 00:11:00 +01:00
|
|
|
template<class Protocol>
|
|
|
|
int level(Protocol const&) const { return SOL_SOCKET; }
|
|
|
|
template<class Protocol>
|
|
|
|
int name(Protocol const&) const { return IP_FORCE_OUT_IFP; }
|
|
|
|
template<class Protocol>
|
|
|
|
char const* data(Protocol const&) const { return m_value; }
|
|
|
|
template<class Protocol>
|
|
|
|
size_t size(Protocol const&) const { return strlen(m_value) + 1; }
|
|
|
|
private:
|
|
|
|
char const* m_value;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define TORRENT_HAS_BINDTODEVICE 1
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define TORRENT_HAS_BINDTODEVICE 0
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
} }
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|