2008-01-25 01:36:40 -05:00
|
|
|
/*
|
|
|
|
* libretroshare/src/pqi: pqimonitor.cc
|
|
|
|
*
|
|
|
|
* 3P/PQI network interface for RetroShare.
|
|
|
|
*
|
|
|
|
* Copyright 2007-2008 Robert Fernie.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License Version 2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA.
|
|
|
|
*
|
|
|
|
* Please report all bugs and problems to "retroshare@lunamutt.com".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "pqi/pqimonitor.h"
|
|
|
|
#include "pqi/pqinetwork.h"
|
|
|
|
#include "util/rsprint.h"
|
|
|
|
|
|
|
|
/***** DUMMY Connect CB for testing *****/
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
|
|
|
|
pqiConnectCbDummy::pqiConnectCbDummy()
|
|
|
|
{
|
|
|
|
std::cerr << "pqiConnectCbDummy()" << std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pqiConnectCbDummy::~pqiConnectCbDummy()
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void pqiConnectCbDummy::peerStatus(std::string id,
|
2009-11-11 11:49:11 -05:00
|
|
|
struct sockaddr_in laddr, struct sockaddr_in raddr, std::list<IpAddressTimed> ipAddressList,
|
2008-01-25 01:36:40 -05:00
|
|
|
uint32_t type, uint32_t mode, uint32_t source)
|
|
|
|
{
|
|
|
|
std::cerr << "pqiConnectCbDummy::peerStatus()";
|
|
|
|
std::cerr << " id: " << id;
|
|
|
|
|
|
|
|
std::cerr << " laddr: " << inet_ntoa(laddr.sin_addr);
|
|
|
|
std::cerr << " lport: " << ntohs(laddr.sin_port);
|
|
|
|
std::cerr << " raddr: " << inet_ntoa(raddr.sin_addr);
|
|
|
|
std::cerr << " rport: " << ntohs(raddr.sin_port);
|
|
|
|
|
|
|
|
std::cerr << " type: " << type;
|
|
|
|
std::cerr << " mode: " << mode;
|
|
|
|
std::cerr << " source: " << source;
|
|
|
|
std::cerr << std::endl;
|
|
|
|
}
|
|
|
|
|
2008-02-26 21:32:20 -05:00
|
|
|
void pqiConnectCbDummy::peerConnectRequest(std::string id,
|
|
|
|
struct sockaddr_in raddr, uint32_t source)
|
2008-01-25 01:36:40 -05:00
|
|
|
{
|
|
|
|
std::cerr << "pqiConnectCbDummy::peerConnectRequest()";
|
|
|
|
std::cerr << " id: " << id;
|
2008-02-26 21:32:20 -05:00
|
|
|
std::cerr << " raddr: " << inet_ntoa(raddr.sin_addr);
|
|
|
|
std::cerr << ":" << ntohs(raddr.sin_port);
|
|
|
|
std::cerr << " source: " << source;
|
2008-01-25 01:36:40 -05:00
|
|
|
std::cerr << std::endl;
|
|
|
|
}
|
|
|
|
|
2008-02-25 18:56:23 -05:00
|
|
|
void pqiConnectCbDummy::stunStatus(std::string id, struct sockaddr_in raddr,
|
|
|
|
uint32_t type, uint32_t flags)
|
2008-01-25 01:36:40 -05:00
|
|
|
{
|
|
|
|
std::cerr << "pqiConnectCbDummy::stunStatus()";
|
2008-02-25 18:56:23 -05:00
|
|
|
std::cerr << " idhash: " << RsUtil::BinToHex(id) << " raddr: " << inet_ntoa(raddr.sin_addr);
|
|
|
|
std::cerr << ":" << ntohs(raddr.sin_port);
|
|
|
|
std::cerr << " type: " << type;
|
2008-01-25 01:36:40 -05:00
|
|
|
std::cerr << " flags: " << flags;
|
|
|
|
std::cerr << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
|