Top "Network-programming" questions

Programming associated with creating and managing networks as well as adding network connectivity to a (set of) programs.

Send and Receive a file in socket programming in Linux with C/C++ (GCC/G++)

I would like to implement a client-server architecture running on Linux using sockets and C/C++ language that is capable …

c++ c linux sockets network-programming
How to read all of Inputstream in Server Socket JAVA

I am using Java.net at one of my project. and I wrote a App Server that gets inputStream from …

java network-programming inputstream serversocket bufferedinputstream
How to find the socket connection state in C?

I have a TCP connection. Server just reads data from the client. Now, if the connection is lost, the client …

c network-programming
What is the Difference Between read() and recv() , and Between send() and write()?

What is the difference between read() and recv(), and between send() and write() in socket programming in terms of performances, …

c sockets unix network-programming posix
Safe use of HttpURLConnection

When using HttpURLConnection does the InputStream need to be closed if we do not 'get' and use it? i.e. …

java http url network-programming
Send HTTP request manually via socket

When I send a normal HTTP request via a socket, the server does not respond with an OK response. I …

java http sockets network-programming http-headers
xcopy with credentials on remote machine

I am trying to access a remote server on a different domain through its IP address. In run command I …

batch-file network-programming remote-access credentials
java.net.UnknownHostException

I'm installing CSVN using jdk1.6.0_23 and I'm getting the following Java error: 2011-02-10 16:25:50,951 [WrapperJarAppMain] WARN util.GrailsUtil - [WARNING] …

java network-programming
Netty vs Apache MINA

They both provide roughly the same functionality. Which one should I choose to develop my high-performance TCP server? What are …

java network-programming apache-mina netty
UDP checksum calculation

The UDP header struct defined at /usr/include/netinet/udp.h is as follows struct udphdr { u_int16_t source; …

c network-programming udp checksum