remove some gnutls handshake debugging

This commit is contained in:
Stephen Birarda 2014-04-01 14:47:30 -07:00
parent 94b29782eb
commit ce6f845681
2 changed files with 1 additions and 4 deletions

View file

@ -476,7 +476,6 @@ void DomainServer::sendDomainListToNode(const SharedNodePointer& node, const Hif
LimitedNodeList* nodeList = LimitedNodeList::getInstance();
if (nodeInterestList.size() > 0) {
// if the node has any interest types, send back those nodes as well
foreach (const SharedNodePointer& otherNode, nodeList->getNodeHash()) {

View file

@ -63,7 +63,5 @@ DTLSSession::DTLSSession(QUdpSocket& dtlsSocket, HifiSockAddr& destinationSocket
gnutls_transport_set_pull_timeout_function(_gnutlsSession, socketPullTimeout);
// start the handshake process with domain-server now
int handshakeReturn = gnutls_handshake(_gnutlsSession);
gnutls_perror(handshakeReturn);
qDebug() << "HR" << handshakeReturn;
gnutls_handshake(_gnutlsSession);
}