Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1237 → Rev 1238

/TCPproxy/trunk/Network.cs
424,11 → 424,6
}
}
 
public override string ToString() // FIXME delete the method
{
return id + " " + startTimestamp.ToString("HH:mm:ss.ffff");
}
 
protected void SetLocalPoint(IPEndPoint localPoint)
{
this.localPoint = localPoint;
2345,12 → 2340,6
get { return response; }
}
 
public override string ToString() // FIXME delete the method
{
return (request.SoapAction != null ? ("SOAP " + request.SoapAction)
: (request.Method == null ? "" : request.Method) + " " + (request.Uri == null ? "" : request.Uri));
}
 
public event TcpEventHandler Update;
 
protected virtual void OnUpdate(TcpEventArgs e)