mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-29 01:16:20 -05:00
repaired regression tests.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4477 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
d656e0912f
commit
6722fa24c5
@ -29,13 +29,14 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
//#define USE_TCP_SOCKET
|
//#define USE_TCP_SOCKET 1
|
||||||
|
|
||||||
// for printing sockaddr
|
// for printing sockaddr
|
||||||
#include "udp/udpstack.h"
|
#include "udp/udpstack.h"
|
||||||
|
|
||||||
#ifndef USE_TCP_SOCKET
|
#ifndef USE_TCP_SOCKET
|
||||||
#include "tcponudp/tou.h"
|
#include "tcponudp/tou.h"
|
||||||
|
#include "tcponudp/udppeer.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* shouldn't do this - but for convenience
|
/* shouldn't do this - but for convenience
|
||||||
@ -132,13 +133,25 @@ int main(int argc, char **argv)
|
|||||||
std::cerr << "Local Address: " << laddr << std::endl;
|
std::cerr << "Local Address: " << laddr << std::endl;
|
||||||
std::cerr << "Remote Address: " << raddr << std::endl;
|
std::cerr << "Remote Address: " << raddr << std::endl;
|
||||||
|
|
||||||
UdpStack udps(laddr);
|
|
||||||
tou_init((void *) &udps);
|
|
||||||
|
|
||||||
#ifdef USE_TCP_SOCKET
|
#ifdef USE_TCP_SOCKET
|
||||||
int sockfd = socket(PF_INET, SOCK_STREAM, 0);
|
int sockfd = socket(PF_INET, SOCK_STREAM, 0);
|
||||||
#else
|
#else
|
||||||
int sockfd = tou_socket(PF_INET, SOCK_STREAM, 0);
|
|
||||||
|
UdpStack udps(laddr);
|
||||||
|
|
||||||
|
UdpSubReceiver *udpReceivers[1];
|
||||||
|
int udpTypes[1];
|
||||||
|
|
||||||
|
udpReceivers[0] = new UdpPeerReceiver(&udps);
|
||||||
|
udpTypes[0] = TOU_RECEIVER_TYPE_UDPPEER;
|
||||||
|
udps.addReceiver(udpReceivers[0]);
|
||||||
|
|
||||||
|
tou_init((void **) udpReceivers, udpTypes, 1);
|
||||||
|
|
||||||
|
int sockfd = tou_socket(0, TOU_RECEIVER_TYPE_UDPPEER, 0);
|
||||||
#endif
|
#endif
|
||||||
if (sockfd < 0)
|
if (sockfd < 0)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user