Hello! I am willing to send an enter using Winsock TCP/IP to a browser.
The enter is being used inside a HTTP Message, so it cannot simply be '\n'.
Is there maybe a char for enter?
Any idea on how I can achieve the enter in this case will be appreciated :)
Thanks in advance,
jackpotsvr
EDIT-
Figured that octal number 12 is an enter. so
char ENTER = 0012;
Though still haven't figured how I could add this in my HTTP message.
The enter is being used inside a HTTP Message, so it cannot simply be '\n'.
Is there maybe a char for enter?
Any idea on how I can achieve the enter in this case will be appreciated :)
Thanks in advance,
jackpotsvr
EDIT-
Figured that octal number 12 is an enter. so
char ENTER = 0012;
Though still haven't figured how I could add this in my HTTP message.