18
votes
5answers
506 views
Game network physics collision
How to simulating two client-controlled vehicles colliding (sensibly) in a typical client/server setup for a network game? I did read this eminent blog post on how to do distributed network physics in …
18
votes
8answers
2k views
Why is it impossible, without attempting I/O, to detect that TCP socket was gracefully closed by peer?
As a follow up to a recent question (http://stackoverflow.com/questions/151590/java-how-do-detect-a-remote-side-socket-close), I wonder why it is impossible in Java, without attempting reading/writing …
15
votes
11answers
1k views
Creating a web server in pure C
Im doing a little project on my university which now involves in creating a Webserver only using C. I know a little about the HTTP 1.1 and i've created a webserver in C# before.
However, I'd like to …
9
votes
11answers
2k views
What do you use when you need reliable UDP?
If you have a situation where a TCP connection is potentially too slow and a UDP 'connection' is potentially too unreliable what do you use? There are various standard reliable UDP protocols out …
9
votes
3answers
319 views
Testing network interrupts in software
I have a network C++ program in Windows that I'd like to test for network disconnects at various times. What are my options?
Currently I am:
Actually disconnecting the network wire from the back …
8
votes
4answers
788 views
How Do Sockets Work in C?
I am a bit confused about socket programming in C.
You create a socket, bind it to an interface and an IP address and get it to listen. I found a couple of web resources on that, and understood it …
7
votes
6answers
481 views
Best Game network programming articles and books
What are good resources for the latest in Game network programming. I'm looking for something that's not the traditional business software network programming, talking about RPC and clients making …
7
votes
9answers
1k views
C: Network Programming
I am relatively new to the C language, but I'm a very fast learner. I'm looking to do some basic network programming in C but I'm not sure how to start. Could anyone point me to a good guide or …
6
votes
1answer
393 views
Problem using AddIPAddress when impersonating an Admin User
I am attempting to add a temporary IP address to a NIC using AddIPAddress when logged in as a non-admin user. The MSDN documentation for AddIPAddress states that ERROR_INVALID_HANDLE is returned as as …
6
votes
5answers
1k views
select on UDP socket doesn’t end when socket is closed - what am I doing wrong?
I'm working on Linux system (Ubuntu 7.04 server with a 2.6.20 kernel).
I've got a program that has a thread (thread1) waiting on a select for a UDP socket to become readable.
I'm using the select …
6
votes
1answer
628 views
Everything a c++ developer should know about network programming?
So I am doing a lot of high performance network programming using Boost::Asio (or just Asio if you will), and have a pretty solid grasp of the essentials of both TCP and UDP protocols. I am wondering …
6
votes
10answers
778 views
Is there an optimal byte size for sending data over a network?
I assume 100 bytes is too small and can slow down larger file transfers with all of the writes, but something like 1MB seems like it may be too much. Does anyone have any suggestions for an optimal …
6
votes
4answers
914 views
How do you throttle the bandwidth of a socket connection in C?
I'm writing a client-server app using BSD sockets. It needs to run in the background, continuously transferring data, but cannot hog the bandwidth of the network interface from normal use. Depending …
6
votes
6answers
1k views
TCP handshake with SOCK_RAW socket
Ok, I realize this situation is somewhat unusual, but I need to establish a TCP connection (the 3-way handshake) using only raw sockets (in C, in linux) -- i.e. I need to construct the IP headers and …
6
votes
9answers
1k views
Search for host with MAC-address using Python
I'd like to search for a given MAC address on my network, all from within a Python script. I already have a map of all the active IP addresses in the network but I cannot figure out how to glean the …
