Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

how could I get the port of the client that is connecting to the c# application?

share|improve this question

2 Answers

up vote 1 down vote accepted

Assuming you have a System.Net.Sockets.Socket object, Type-cast its RemoteEndPoint property to an IPEndPoint and then read its Port property.

share|improve this answer

To listen on a socket, don't you need to know the port number first?

share|improve this answer
sure but I need the client port for NAT punchtrough a server. I don't need the port where the client program is binded but the one of the connection aasigned by the router – Stefano Apr 25 '11 at 18:38
Then I'd suggest you go to rfc-editor.org/rfcsearch.html and search for NAT and/or Network Address Translation. And the work through the RFCs. Also see en.wikipedia.org/wiki/NAT_traversal – Nicholas Carey Apr 25 '11 at 19:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.