vote up 0 vote down star

I have an dialog for HTTP proxy configuration with hostname and port edit boxes.

My question is how can I validate user input for correct hostname and port?

May be I have to use some regular expression for hostname validation or there is some helpful MFC or WinAPI function? What is the maximum correct number for port?

flag

63% accept rate
This question is in serious need of more information in order to give helpful answers. – Eran Rehavi Jun 23 at 15:36

1 Answer

vote up 1 vote down check
  1. Port number is an unsigned short from 1-65535, ports under 1024 are reserved for system services http, ftp, etc.
  2. I don't believe that you can validate host name (or should) especially when you have locallized host names.
link|flag
1  
Privileged ports are those below 1024, not 256. – mseery Jun 23 at 20:56

Your Answer

Get an OpenID
or

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