Rank: Newbie Groups: Member
Joined: 5/24/2008 Posts: 2 Points: 6
|
Maybe the ability to retrieve the client's IP from OnReadComplete's OperationArgs or if this wasn't added for some strange security reason, then atleast a checksum of the client's IP, for server's who only allow one cgi operation per day, per client, etc. and logging, etc.
|
Rank: Newbie Groups: Member
Joined: 5/24/2008 Posts: 2 Points: 6
|
Hm, I just read that you will not allow this in the CTP release, that's a shame.
|
Rank: Administration Groups: Administration
Joined: 2/15/2008 Posts: 130 Points: 835
|
Hello Mike, Local and remote IP addresses will be available from the IConnection object, which is returned on client connection. Code:public interface IConnection { IPEndPoint LocalEndPoint { get; } IPEndPoint RemoteEndPoint { get; } ... };
|