Click here to Skip to main content
15,886,724 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: VC++ console application - client / Server Pin
jeron122-Sep-14 6:55
jeron122-Sep-14 6:55 
GeneralRe: VC++ console application - client / Server Pin
Pouria Polouk23-Sep-14 22:34
Pouria Polouk23-Sep-14 22:34 
GeneralRe: VC++ console application - client / Server Pin
jeron124-Sep-14 3:58
jeron124-Sep-14 3:58 
GeneralRe: VC++ console application - client / Server Pin
Pouria Polouk24-Sep-14 8:19
Pouria Polouk24-Sep-14 8:19 
GeneralRe: VC++ console application - client / Server Pin
jeron124-Sep-14 9:16
jeron124-Sep-14 9:16 
GeneralRe: VC++ console application - client / Server Pin
Pouria Polouk25-Sep-14 5:33
Pouria Polouk25-Sep-14 5:33 
QuestionRe: VC++ console application - client / Server Pin
jeron125-Sep-14 11:53
jeron125-Sep-14 11:53 
AnswerRe: VC++ console application - client / Server Pin
Pouria Polouk26-Sep-14 7:25
Pouria Polouk26-Sep-14 7:25 
It's confusing!
Let’s imagine my public IP address is 86.57.91.237.
Now I want to use that IP in the code below:

...
WSAData ws;
struct sockaddr_in sock;
int resSock, bnd;
WSAStartup(MAKEWORD(2, 2), &ws);
resSock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (resSock != INVALID_SOCKET){
sock.sin_family = AF_INET;
sock.sin_port = htons(3377);
sock.sin_addr.S_un.S_addr = inet_addr("86.57.91.237");
}
bnd=bind(resSock, (struct sockaddr *)&sock, sizeof(sock));
if (bnd != SOCKET_ERROR)
cout << "Bind Successful" << endl;
else
cout << GetLastError() << endl;
...

why does this program show error code 10049? Error code 10049 means:
“The requested address is not valid in its context. This normally results from an attempt to bind to an address that is not valid for the local computer”.

I want to see “Bind Successful” message.
GeneralRe: VC++ console application - client / Server Pin
jeron126-Sep-14 7:41
jeron126-Sep-14 7:41 
QuestionRegarding Parameter in C (GCD of 2 Numbers) Pin
Driganka Mandal19-Sep-14 19:02
Driganka Mandal19-Sep-14 19:02 
AnswerRe: Regarding Parameter in C (GCD of 2 Numbers) Pin
Richard MacCutchan19-Sep-14 21:17
mveRichard MacCutchan19-Sep-14 21:17 
GeneralRe: Regarding Parameter in C (GCD of 2 Numbers) Pin
Driganka Mandal19-Sep-14 22:18
Driganka Mandal19-Sep-14 22:18 
GeneralRe: Regarding Parameter in C (GCD of 2 Numbers) Pin
Richard MacCutchan19-Sep-14 22:23
mveRichard MacCutchan19-Sep-14 22:23 
AnswerRe: Regarding Parameter in C (GCD of 2 Numbers) Pin
Albert Holguin22-Sep-14 3:41
professionalAlbert Holguin22-Sep-14 3:41 
QuestionIs it possible of getting same answer for inverse of matrix 100*100 dimension using gsl lib and matlab? Pin
mybm119-Sep-14 0:19
mybm119-Sep-14 0:19 
AnswerRe: Is it possible of getting same answer for inverse of matrix 100*100 dimension using gsl lib and matlab? Pin
CPallini19-Sep-14 1:50
mveCPallini19-Sep-14 1:50 
QuestionExtraction dictionary Software database Pin
محمد الذوادي18-Sep-14 18:12
محمد الذوادي18-Sep-14 18:12 
AnswerRe: Extraction dictionary Software database Pin
Richard MacCutchan18-Sep-14 22:11
mveRichard MacCutchan18-Sep-14 22:11 
QuestionGoogle's PageRank Pin
Ștefan-Mihai MOGA17-Sep-14 17:24
professionalȘtefan-Mihai MOGA17-Sep-14 17:24 
SuggestionRe: Google's PageRank Pin
David Crow18-Sep-14 17:34
David Crow18-Sep-14 17:34 
QuestionForce a popup menu hosted in a CDialog to show up its accelerators keys Pin
sdancer7517-Sep-14 2:54
sdancer7517-Sep-14 2:54 
AnswerRe: Force a popup menu hosted in a CDialog to show up its accelerators keys Pin
enhzflep17-Sep-14 16:46
enhzflep17-Sep-14 16:46 
GeneralRe: Force a popup menu hosted in a CDialog to show up its accelerators keys Pin
sdancer7517-Sep-14 20:56
sdancer7517-Sep-14 20:56 
GeneralRe: Force a popup menu hosted in a CDialog to show up its accelerators keys Pin
enhzflep17-Sep-14 23:50
enhzflep17-Sep-14 23:50 
GeneralRe: Force a popup menu hosted in a CDialog to show up its accelerators keys Pin
sdancer7518-Sep-14 0:20
sdancer7518-Sep-14 0:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.