Thanks, Mike. I have finally got this to work. I first reset my router, just because I had some settings changed that were effecting my network. I tried re-adding the port to the forward list and...
I had a thread a while back about winsocks and connecting them through LAN, which worked! http://www.codeguru.com/forum/showthread.php?t=446639 (that thread contains the code for server/client)
The program still works by using 127.0.0.1 within the local network, what I meant in my last post was that by using my public address it didn't work within...
I believe that my IP's are private IP addresses. My server does not have two NICs. Both computers on the Local Network share the same IP address. Even if I have both the client and server program...
The IP addresses I covered with X's were actually my IP, I just covered them with two X's even in points where there should have been 3 numbers. (Ex: if my ip was 12.34.678, i just put XX.XX.XX.) ...
The server is listening on the port, because when you use 127.0.0.1, it connects only if you type the specified port (on client) that the server is listening to. The server is having no response to...
ugh, i just tried using the client and server on two separate computers on the same local network, and i get the error code 10061, which is a full connect rejection. i do have a router, however i...
That comment you were looking at was kind of old. I was just using 127.0.0.1 before to test, and that comment was just to remind me. Prior to the code for the client, there is a line which it...
that actually makes a lot of sense that it would be the router. my computer is behind a rounter, so i'll try re-configuring it. But, is there some way this can be done with Win32 functions and c++?
I have been working on a server/client program now for a few weeks, and they work flawlessly together by binding the client to 127.0.0.1, or the localhost. But, for some reason, the client/server...
Here's some code samples (I took some stuff out just to save me the hassle of having to put everything and explain things. The socket connection between client and server works, as do recv() and...
well, yeah it sends a message stating something like "Welcome to the server." But I want to be able to send the server a message from client or vice versa, such as "Welcome to the Server", and use...
I also use Ajax and Flash, and Ajax is (to me) much much easier. Of course, flash can do anything ajax can do with a little bit of actionscript, but some users may not have flash. also, making ajax...
I am really fascinated by C++, and really want to learn it completely. I already have a lot of experience with PHP, AS, Ajax (if you consider that a language) and a few others. I tried going to...