Inheritance: GdbServerConnectionBase
Example #1
0
 override protected void handleConnect(Socket socket)
 {
     base.handleConnect(socket);
     clientBySocket[socket] = new GdbServerConnection(new NetworkStream(socket, FileAccess.Write));
 }
Example #2
0
 protected override void handleConnect(Socket socket)
 {
     base.handleConnect(socket);
     clientBySocket[socket] = new GdbServerConnection(new NetworkStream(socket, FileAccess.Write));
 }