2
votes
3answers
82 views
What are the effects of incorrectly setting the netmask?
What are the effects of incorrectly setting the netmask? I have a C++ application that sets the network mask of a device. If the netmask is set incorrectly, tftp doesn't seem to …
0
votes
1answer
21 views
How to make a server send a processed data back to the invoking iPhone?
I am sorry if the title is unclear. Allow me to elaborate further.
Firstly, I have an application on an iPhone that will allow the user to upload a data to server. We simply use p …
0
votes
3answers
107 views
How to write a http1.0 proxy server in c in linux?
I must develop proxy server that work with only HTTP 1.0 in Linux and by c .
I need some hint to start developing .
1
vote
3answers
175 views
Distributed system design using only C
Hi,
I have the work of implementing a distributed system of nodes (like p2p nodes) each of these nodes (lets say A,B,C and D) perform certain functions and need to interact with e …
0
votes
1answer
71 views
Why would a blocking socket repeatedly return 0-length data?
I'm having a significant problem using a standard BSD-style socket in a C++ program. In the code below, I connect to a local web server, send a request, and simply create a loop wa …
0
votes
0answers
29 views
How do I gather TCP statistics on Windows?
I am interested in gathering some statistics from every TCP connection on a windows box for performance evaluation reasons. I see part of the API I need:
"The GetTcpTable2 functi …
0
votes
2answers
24 views
How to initialize struct in6_addr?
I do know one method to do this,
const struct in6_addr naddr6 = { {
0x3f, 0xfe, 0x05, 0x01,
0x00, 0x08, 0x00, 0x00,
0x02, 0x60, 0x97, 0xff,
0xfe, 0x40, 0xef, 0xa …
2
votes
1answer
119 views
Optimizing a LAN server for a game.
I'm the network programmer on a school game project. We want to have up to 16 players at once on a LAN. I am using the Server-Client model and am creating a new thread per client …
1
vote
3answers
52 views
Non-blocking socket on Windows doesn’t return after send() call
I'm hoping someone can explain a situation -- any situation -- in which a non-blocking Windows socket would not immediately return after using send() on it. On other platforms, my …
2
votes
3answers
71 views
What are often used network programming functions/code snippets?
All of us who still do some kind of network programming (TCP/UDP, DNS or Client/Server) in C repeatedly use some code snippets again and again.
We do use some standard libraries …
0
votes
0answers
14 views
Audio streaming from iPhone to a server?
How can I stream the audio recorded from iPhone to a server continuously? Am I really have to use RTP? Any other suggestions?
Thanks.
1
vote
2answers
24 views
How to manage multiple client sessions within server application?
Hello folks,
I'm writing web chat application, similar to GTalk. It based on Orbited + Sinatra for client side, and Ruby for server side. I've already implemented all the protocol …
2
votes
1answer
75 views
Boost.Asio documentation is non-existent. What do these errors mean?
I'm struggling with two errors with Boost.Asio.
The first occurs when I try to receive data on a socket:
char reply[1024];
boost::system::error_code error;
size_t reply_length = …
0
votes
1answer
45 views
What are your recommended tools and frameworks for network development on Linux?
What are your favourite network-tools, which you use to troubleshoot or design (as in conceptualize) your network-application code.
Ethereal/Wireshark
Nmap
any particular simul …
1
vote
1answer
34 views
Non blocking file descriptors Unix Network Programming
I want to ask what are the cases when do we need to use Non blocking flag on file/socket descriptors means instead we can always use select function call to determine the ready des …
