Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1234 → Rev 1235

/TCPproxy/trunk/Network.cs
424,7 → 424,12
}
}
 
protected void SetLocalPoint(IPEndPoint localPoint)
public override string ToString() // FIXME delete the method
{
return id + " " + startTimestamp.ToString("HH:mm:ss.ffff");
}
 
protected void SetLocalPoint(IPEndPoint localPoint)
{
this.localPoint = localPoint;
OnUpdate(new TcpEventArgs());
2340,6 → 2345,12
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)