0006 Removed abort if IPv6 (Patch from G10H4ck)

git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.6-IPv6@8030 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2015-03-15 15:34:18 +00:00
parent e52d6a07b7
commit b77f7cc361
7 changed files with 75 additions and 61 deletions

View file

@ -181,7 +181,7 @@ int UdpLayer::reset(struct sockaddr_in &local)
/* stop the old thread */
{
bdStackMutex stack(sockMtx); /********** LOCK MUTEX *********/
bdStackMutex stack(sockMtx); (void)stack; /********** LOCK MUTEX *********/
#ifdef DEBUG_UDP_LAYER
std::cerr << "UdpLayer::reset() setting stopThread flag" << std::endl;
#endif
@ -322,7 +322,7 @@ int UdpLayer::sendPkt(const void *data, int size, const sockaddr_in &to, int ttl
}
/* setup connections */
int UdpLayer::openSocket()
int UdpLayer::openSocket()
{
sockMtx.lock(); /********** LOCK MUTEX *********/
@ -391,13 +391,12 @@ int UdpLayer::openSocket()
// start up our thread.
{
bdStackMutex stack(sockMtx); /********** LOCK MUTEX *********/
bdStackMutex stack(sockMtx); (void)stack; /********** LOCK MUTEX *********/
stopThread = false;
}
start();
return 1;
}
int UdpLayer::setTTL(int t)