mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-29 09:26:18 -05:00
63b787a504
Use POD type member intitialization for sockaddr_storage Cleanup a bunch of clutter
91 lines
3.5 KiB
C++
91 lines
3.5 KiB
C++
/*******************************************************************************
|
|
* libretroshare/src/pqi: pqissludp.h *
|
|
* *
|
|
* libretroshare: retroshare core library *
|
|
* *
|
|
* Copyright (C) 2004-2006 Robert Fernie <retroshare@lunamutt.com> *
|
|
* Copyright (C) 2015-2019 Gioacchino Mazzurco <gio@altermundi.net> *
|
|
* *
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU Lesser General Public License as *
|
|
* published by the Free Software Foundation, either version 3 of the *
|
|
* License, or (at your option) any later version. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU Lesser General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Lesser General Public License *
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
* *
|
|
*******************************************************************************/
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <map>
|
|
|
|
#include "pqi/pqissl.h"
|
|
#include "pqi/pqinetwork.h"
|
|
#include "util/rsdebug.h"
|
|
|
|
|
|
/**
|
|
* @brief pqissludp is the special NAT traversal protocol.
|
|
* This class will implement the basics of streaming ssl over udp using a
|
|
* tcponudp library.
|
|
* It provides a NetBinInterface, which is primarily inherited from pqissl.
|
|
* Some methods are override all others are identical.
|
|
*/
|
|
class pqissludp: public pqissl
|
|
{
|
|
public:
|
|
pqissludp(PQInterface *parent, p3LinkMgr *lm);
|
|
~pqissludp() override;
|
|
|
|
int listen() override { return 1; }
|
|
int stoplistening() override { return 1; }
|
|
|
|
virtual bool connect_parameter(uint32_t type, uint32_t value);
|
|
virtual bool connect_additional_address(uint32_t type, const struct sockaddr_storage &addr);
|
|
|
|
// BinInterface.
|
|
// These are reimplemented.
|
|
virtual bool moretoread(uint32_t usec);
|
|
virtual bool cansend(uint32_t usec);
|
|
/* UDP always through firewalls -> always bandwidth Limited */
|
|
virtual bool bandwidthLimited() { return true; }
|
|
|
|
protected:
|
|
|
|
// pqissludp specific.
|
|
// called to initiate a connection;
|
|
int attach();
|
|
|
|
virtual int reset_locked();
|
|
|
|
virtual int Initiate_Connection();
|
|
virtual int Basic_Connection_Complete();
|
|
|
|
/* Do we really need this ?
|
|
* It is very specific UDP+ToU+SSL stuff and unlikely to be reused.
|
|
* In fact we are overloading them here becase they are very do different of pqissl.
|
|
*/
|
|
virtual int net_internal_close(int fd);
|
|
virtual int net_internal_SSL_set_fd(SSL *ssl, int fd);
|
|
virtual int net_internal_fcntl_nonblock(int /*fd*/) { return 0; }
|
|
|
|
private:
|
|
|
|
BIO *tou_bio; // specific to ssludp.
|
|
|
|
uint32_t mConnectPeriod;
|
|
uint32_t mConnectFlags;
|
|
uint32_t mConnectBandwidth;
|
|
|
|
struct sockaddr_storage mConnectProxyAddr;
|
|
struct sockaddr_storage mConnectSrcAddr;
|
|
|
|
RS_SET_CONTEXT_DEBUG_LEVEL(2)
|
|
};
|