Home
last modified time | relevance | path

Searched refs:socketInfo (Results 1 – 2 of 2) sorted by relevance

/external/autotest/client/site_tests/network_FirewallHolePunch/src/tcpserver/
Dtcp-server.js181 TcpServer.prototype._onSocketInfo = function(tcpConnection, socketInfo) { argument
183 this.callbacks.connect(tcpConnection, socketInfo);
194 this.socketInfo = null;
207 TcpConnection.prototype.setSocketInfo = function(socketInfo) { argument
208 this.socketInfo = socketInfo;
286 TcpConnection.prototype._onSocketInfo = function(callback, socketInfo) { argument
290 this.socketInfo = socketInfo;
291 callback(this, socketInfo);
Dmain.js49 function onAcceptCallback(tcpConnection, socketInfo) { argument
50 var info="["+socketInfo.peerAddress+":"+socketInfo.peerPort+"] Connection accepted!";
52 console.log(socketInfo);
58 var info="["+socketInfo.peerAddress+":"+socketInfo.peerPort+"] "+line;