Tagged Questions

An endpoint of a bidirectional inter-process communication flow across an Internet Protocol-based computer network.

learn more… | top users | synonyms (3)

40
votes
19answers
20k views

What is the difference between a port and a socket?

This was a question raised by one of the software engineers in my organisation. I'm interested in the broadest definition.
36
votes
4answers
14k views

How much overhead does SSL impose?

I know there's no single hard-and-fast answer, but is there a generic order-of-magnitude estimate approximation for the encryption overhead of SSL versus unencrypted socket communication? I'm talking ...
36
votes
10answers
6k 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, I wonder why it is impossible in Java, without attempting reading/writing on a TCP socket, to detect that the socket has been gracefully closed by the peer? This ...
32
votes
6answers
15k views

socket.shutdown vs socket.close

I recently saw a bit of code that looked like this (with sock being a socket object of course): sock.shutdown(socket.SHUT_RDWR) sock.close() What exactly is the purpose of calling shutdown on the ...
30
votes
11answers
11k 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 ...
24
votes
3answers
18k views

How to use socket based client with WCF (net.tcp) service?

I have developed a WCF service that uses the net.tcp adapter and listens to a specific port. I want to connect to that service using a normal .net client that uses sockets to send data to the port and ...
22
votes
3answers
767 views

Do Java sockets support full duplex?

Is it possible to have one thread write to the OutputStream of a Java Socket, while another reads from the socket's InputStream, without the threads having to synchronize on the socket?
21
votes
3answers
332 views

.NET sockets vs C++ sockets at high performance

My question is to settle an argument with my co-workers on C++ vs C#. We have implemented a server that receives a large amount of UDP streams. This server was developed in C++ using asynchronous ...
20
votes
11answers
3k views

How to use the C socket API in C++ on z/OS

I've been having issues getting the C sockets API to work properly in C++. Specifically, although I am including sys/socket.h, I still get compile time errors telling me that AF_INET is not defined. ...
19
votes
7answers
18k views

How to config socket connect timeout in C#

(C# )When the Client tries to connect to a disconnected IP address, there is a long timeout over 15 seconds... How can we reduce this timeout? What is the method to config it? The code I'm using to ...
19
votes
3answers
10k views

Java: How to detect a remote side socket close?

How do you detect if Socket#close() has been called on a socket on the remote side?
18
votes
2answers
342 views

What is the actual impact of calling socket.recv with a bufsize that is not a power of 2?

To read data from a socket in python, you call socket.recv, which has this signature: socket.recv(bufsize[, flags]) The python docs for socket.recv vaguely state: Note: For best match with ...
18
votes
5answers
17k views

Official reasons for “Software caused connection abort: socket write error”

Given this stack trace snippet Caused by: java.net.SocketException: Software caused connection abort: socket write error  at java.net.SocketOutputStream.socketWrite0(Native Method) ...
18
votes
6answers
15k views

IPC performance: Named Pipe vs Socket

Everywhere seems to say named pipes are fast whereas sockets are slow for ipc. How much greater is the speed advantage of named pipes vs local sockets on linux? I would prefer to use sockets because ...
18
votes
3answers
11k views

How can I check whether a (TCP) socket is (dis)connected in C#?

How should I check a (TCP) socket to find out whether it is connected? I have read about the Socket.Connected property in MSDN, but it says it only shows the state according to the last I/O. This ...
17
votes
2answers
511 views

nginx, fastcgi and open sockets

I'm experimenting using fastcgi on nginx, but I've run into some problems. Nginx doesn't reuse connections, it gives 0 in BeginRequest flags, so the application should close the connection after the ...
17
votes
3answers
4k views

On localhost, how to pick a free port number?

I try to play with inter process communication and since I could not figure out how to use named pipes under Windows I thought I'll use network sockets. Everything happens locally, server is able to ...
17
votes
5answers
15k views

Sockets: Discover port availability using Java

How to programmatically find availability of a port in a given machine using java?i.e given a port number whther it is already being used .
15
votes
2answers
557 views

Sun JVM (JRE jre1.6.0_24) segfault NET_Read

Our JVM crashes with segmentation fault from time to time in production with what feels like a race condition of some sort. Setups to reproduce: - JRE jre1.6.0_24 on Linux Ubuntu 9.10 and Debian 4.x ...
15
votes
3answers
5k views

Get IP address of an interface on linux

How can I get the IPv4 address of an interface in linux from C code ? e.g. I'd like to get the IP address(if any) assigned to eth0
15
votes
9answers
2k views

Why does the Flash Player throw a sandbox error in this case?

I get a Flex 3 sandbox error #2048 after connecting to a Socket on a Java (1.5) server. The server code is all mine, i.e. not running under Apache. Flash Player 10.0 r32. The sequence is as ...
15
votes
6answers
18k views

What is the largest Safe UDP Packet Size on the Internet

I've read a number of articles about UDP packet sizes but have been unable to come to a conclusion on whats correct. A number of services restrict the largest UDP packet to 512 bytes (like dns) ...
15
votes
10answers
12k views

Tips / techniques for high-performance C# server sockets

I have a .NET 2.0 server that seems to be running into scaling problems, probably due to poor design of the socket-handling code, and I am looking for guidance on how I might redesign it to improve ...
14
votes
6answers
2k views

Can I set up socket.io chat on heroku?

I have a simple socket.io chat application which I've uploaded to one of the new Heroku 'cedar' stacks. Now I almost have everything working but I've hit one stumbling block. On my localhost, I open ...
14
votes
4answers
1k views

Scaling a chat app - short polling vs. long polling (AJAX, PHP)

I run a website where users can chat with each other through the browser (think Facebook chat). What is the best way to handle the live interaction? (Right now I have a poll going every 30 seconds to ...
14
votes
1answer
4k views

What is the difference between AF_INET and PF_INET constants?

Looking at examples about socket programming, we can see that some people use AF_INET while others use PF_INET. In addition, sometimes both of them are used at the same example. The question is: Is ...
13
votes
7answers
2k views

Rewriting Live TCP/IP (Layer 4) (i.e. Socket Layer) Streams

I have a simple problem which I'm sure someone here has done before... I want to rewrite Layer 4 TCP/IP streams (Not lower layer individual packets or frames.) Ettercap's etterfilter command lets ...
13
votes
4answers
237 views

Network transfer pauses

I have made a server and a client in C# which transfers files. But when transferring it pauses for some seconds and then continues. I have uploaded a video on YouTube to demonstrate: ...
13
votes
2answers
2k views

Efficient Linux sockets (DMA/zero-copy)

I'm building a very high performance Linux server (based on epoll, non-blocking sockets, and async disk IO [based on io_submit/io_getevents/eventfd]). Some of my benchmarks show that the way I handle ...
13
votes
7answers
13k views

Proper way to stop TcpListener

I am currently using TcpListener to address incoming connections, each of which are given a thread for handling the communication and then shutdown that single connection. Code looks as follows: ...
13
votes
5answers
7k views

How can I communicate over TCP sockets from JavaScript?

I'm thinking about how limiting it is for AJAX apps to have to poll for updates, when what would be ideal is for javascript to be able to set up a real two way connection to the server. I'm wondering ...
12
votes
4answers
359 views

Determine between socket and fd

On unix everything is a file approach of function read(), write(), close() is not supported on Win32. I want to emulate it but have no idea how to distinguish when sock is socket or fd on WinSocks2. ...
12
votes
2answers
180 views

N*(connect + send + close) vs (Nagle disable + connect + N*send + close) , N > 1

I'm new to socket programming (as you already figure out by my silly question), but keeping my shame aside, I'm writing a program using TCP posix. My constrain is the following: The message to be sent ...
12
votes
4answers
3k views

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 ? performance and speed and other behavior.
12
votes
7answers
14k views

Can two applications listen to the same port?

As simple as it gets - can two applications on the same machine bind to the same port and ip address? Taking it a step further, can one app listen to requests coming from a certain ip and the other to ...
12
votes
3answers
17k views

UNIX nonblocking I/O: O_NONBLOCK vs. FIONBIO

In every example and discussion I run across in the context of BSD socket programming, it seems that the recommended way to set a file descriptor to nonblocking I/O mode is using the flag to fcntl(), ...
12
votes
8answers
8k views

Is there a way for multiple processes to share a listening socket?

In socket programming, you create a listening socket and then for each client that connects, you get a normal stream socket that you can use to handle the client's request. The OS manages the queue of ...
12
votes
9answers
1k views

What is the best way to pass information from java to c++?

I have a java application I need to pass some info to a C++ program. It has been suggested that I use some simple socket programming to do this. Is this the best way? If not what are the ...
12
votes
10answers
15k views

Detecting TCP Client Disconnect

If I'm running a simple server and have accept()ed a connection from a client, what is the best way to tell when the client has disconnected? Normally, the client in this case I supposed to send a ...
12
votes
4answers
996 views

Best Flash Audio/Video + Interactivity server?

I'm looking for suggestions on Flash realtime servers. Currently, we use a combination of Moock's Unity and Red5, but there are a couple problems. First, we are moving to AS3, and Unity only supports ...
12
votes
5answers
2k views

What kind of issues are there in implementing realtime multiplayer games

I have some experience making multiplayer turn-based games using sockets, but I've never attempted a realtime action game. What kind of extra issues would I have to deal with? Do I need to keep a ...
11
votes
6answers
210 views

Anything I can do when socket.close() throws in Java?

Started learning java a week ago and also decided learning the right way to work with exceptions. Java really drives me mad with the idea of specifying exceptions the method can throw as part of its ...
11
votes
5answers
695 views

Is sending data via UDP sockets on the same machine reliable?

If i use UDP sockets for interprocess communication, can i expect that all send data is received by the other process in the same order? I know this is not true for UDP in general.
11
votes
2answers
3k views

TCPClient vs Socket in C#

I don't see much use of TCPClient, yet there is a lot of Socket? What is the major difference between them and when would you use each? I understand that .net socket are written on top of WINSOCK, ...
11
votes
4answers
2k 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 ...
10
votes
2answers
193 views

What does the abbreviation “s_”, “ai_”, “sin_”, “in” (if such) in the IP structures mean?

Pretty simple questions. And yes, maybe not (that) important, but I'm really curious what do they mean and I couldn't find their meanings. // ipv4 struct sockaddr_in { short int ...
10
votes
4answers
5k views

close vs shutdown socket?

In C, I understood that if we close a socket means the socket will be destroyed and can be re-used later. How about shutdown? The description said it close half of a duplex connection to that socket. ...
10
votes
1answer
514 views

What is the difference between GCD Dispatch Sources and select()?

I've been writing some code that replaces some existing: while(runEventLoop){ if(select(openSockets, readFDS, writeFDS, errFDS, timeout) > 0){ // check file descriptors for activity and ...
10
votes
3answers
1k views

Getting the location from a WebClient on a HTTP 302 Redirect?

I have a URL that returns a HTTP 302 redirect, and I would like to get the URL it redirects to. The problem is that System.Net.WebClient seems to actually follow it, which is bad. HttpWebRequest ...
10
votes
4answers
4k views

C++ Socket Server - Unable to saturate CPU

I've developed a mini HTTP server in C++, using boost::asio, and now I'm load testing it with multiple clients and I've been unable to get close to saturating the CPU. I'm running on a 4-cpu box, and ...

1 2 3 4 5 178