An endpoint of a bidirectional inter-process communication flow. This often refers to a process flow over a network connection, but by no means is limited to such.

learn more… | top users | synonyms (3)

0
votes
0answers
4 views

select.select() binding in my MUD server when it shouldn't

I'm using the miniboa library for non-blocking telnet-style socket programming. The library includes a demo of a simple chat server. On line 809, in the poll() function, the system uses the ...
-1
votes
0answers
10 views

Which are the available tools to create server sockets with PHP?

I'm looking for alternatives to help create a server socket. By now, I already found about Ratchet. Are there more options available?
0
votes
0answers
6 views

CGI python - Opening multiple sockets fails

I am using python and I use the following code: import urllib2 def get_data(url): usock = urllib2.urlopen(url) data = usock.read() usock.close() return data I am running a script ...
0
votes
1answer
19 views

Using STDIN/STDOUT as a socket

I'm having a client process launch a server process with xinetd. As I understand it, the server come to life being able to read from the client via its STDIN, and write to the client via its STDOUT. ...
0
votes
1answer
19 views

Python _socket.socket vs socket._socketobject, how to convert from one to the other

I realised that my problem with wrapping sockets in ssl, when the socket is built from a fd is related to a socket._socketobject being converted (after rebuilding it from fd) into a socket._socket. ...
1
vote
3answers
950 views

How to transfer larger objects through a socket in QT?

I would like to send/recieve image files and 2 ints as messages in a client server program. I'm using QLocalSocket and QImage for this. However I don't know how to read from the socket only after ...
0
votes
0answers
110 views

socket_bind() [function.socket-bind]: unable to bind address [13]: Permission denied

I am building a chat application based on websocket protocol.I am uploading this on an apache server and i am getting this error : "Warning: socket_bind() [function.socket-bind]: unable to bind ...
0
votes
1answer
111 views

Sockets io - managing multiple rooms?

Having trouble managing multiple rooms with node.js and socket.io socket.on('join_room', function (data) { socket.join(data); }); socket.on('send_msg', function (data) { ...
1
vote
2answers
45 views

Java client-server issue

Please have a look at the example here. Wanting to be able to keep the connection alive and send multiple client messages to the server, I changed the code to this: // Send the message to the server ...
0
votes
1answer
23 views

Close listening socket in python thread

I have a problem trying to learn about sockets for network communication. I have made a simple thread that listens for connections and creates processes for connecting clients, my problem though is ...
1
vote
1answer
20 views

Linux: Unix domain datagram sockets don't follow specification of connect/recv, do they?

The manual of connect says: If the socket sockfd is of type SOCK_DGRAM then addr is the address to which datagrams are sent by default, and the only address from which datagrams are received. ...
0
votes
1answer
40 views

VB6 handling Multiple connections (Multi-Threading)

I am wondering what is the best stable way to handle multiple connections at the same time? I am using vb6 and currently using winsock api's no Winsock control. I tried that before and its not multi ...
0
votes
0answers
75 views

Which simple webservice for low bandwidth?

My goal is the following, and I do not know which direction I should ho to. a webapp a client that can interact with the webapp not by browser, but by "something other". This connection might be ...
0
votes
2answers
34 views

Error while reading the file and sending via sockets

I am reading a file and transferring it to a server in C++. Following is the main part of my code: Client: long Begin; long End; char * block; //Open the file for reading ifstream myfile; ...
0
votes
0answers
9 views

Stuttering Playback when playing a stream received via UDP socket

i want to send an audio stream from PC (C++ application, using FMOD-API to decode audio data and send via UDP Socket) to an android device. The communication already works and i can hear "sound" ...
0
votes
2answers
21 views

Socket programming and arrays

Hello i am trying to create 2 programms that communicate throught TCP sockets, on C++. I know how to use write() and read() functions but I encounter a problem when I try to send array from one ...
4
votes
2answers
2k views

How to use getnameinfo instead of gethostbyname?

in code : if ((host = (struct hostent*) gethostbyname(address) ) == 0) // address is a string I've got warning when cross compiling (generic arm architecture) on 4.5.x gcc : (.text+0x1558): ...
0
votes
1answer
39 views

Check if data has been received socket c#

When sending async data in a socket with Socket.BeginSend(), this will send data to the conneted client or server, now this works fine, but now when i pulled out the network cable and send something ...
0
votes
0answers
19 views

Socket Exception sending photo

I am using this code to open a connection to the server: public static String executeHttpPost(String url, ArrayList<NameValuePair> postParameters) throws Exception { BufferedReader in = ...
4
votes
3answers
1k views

Can a socket be closed from another thread when a send / recv on the same socket is going on?

Can a socket be closed from another thread when a send / recv on the same socket is going on? Suppose one thread is in blocking recv call and another thread closes the same socket, will the thread in ...
3
votes
0answers
49 views

Need help in “Socket Programming” using Visual C# (Dot Net Framework 4.0)?

Recently, I was given an assignment... "To develop a Windows Forms application which can be installed on various windows machines at an office or enterprise. There would be a database in just one ...
1
vote
3answers
70 views

Why can't my code read the number of bytes available on a QTcpSocket? Ideas?

I have the following snippet of code in the body of a loop responsible for reading data from a QTcpSocket (nntp is a pointer to a QTcpSocket). std::vector<char> buffer; int bytesAvailable = ...
1
vote
2answers
32 views

Android client - server never detect connection lost

My situation is the following: Two devices, both running with Android OS, One Devices is the server, this is running with a Service and running threads to create connections and all the normal ...
0
votes
1answer
13 views

incomplete header with socket c#

Hi I've try to send and http request to a Shoutcast stream site and then read response, I've this two sources one is the main ( I've tested with wpf) and other is a little helper for socket... well ...
1
vote
1answer
74 views

My application (sever/client) is blocked after using Readline

Im trying to make a tcp connection between server and client . server is programmed on c# and cliend on java... server is working fine... my problem is in this code: try { InetAddress address = ...
-2
votes
1answer
28 views

Socket programming (Multiple Requests from Client)

I have to process multiple request from Client to Server in same connection in Socket Programming. Please suggest me some solution.
0
votes
2answers
52 views

lvalue required as unary ‘&’ operand

I have the following lines of code : #define PORT 9987 and char *ptr = (char *)&PORT; This seems to work in my server code. But as I wrote it in my client code, it gives this error message ...
0
votes
2answers
30 views

How to reconnect to a socket after server restart

I'm building an application with realtime invalidations using a socket and while I have something working, It seems to stop working once I restart my server (heartbeat not send anymore). In the ...
3
votes
3answers
2k views

How does a socket know which network interface controller to use?

I'm a lamer in the field of network programming, so my question might seem stupid, but please bear with me. The question is, if a computer has multiple network cards, all of them connected to ...
0
votes
0answers
13 views

IOCP With WSASend and OVERLAPPED pool

This is a server with sockets using IOCP. I initalize a pool of OVERLAPPED which i use to send WSASend() calls. Every WSASend() call take out a single OVERLAPPED pointer out of the pool and puts it ...
1
vote
1answer
15 views

What does PHP's socket_recv MSG_PEEK flag mean?

http://php.net/manual/en/function.socket-recv.php What is the purpose of MSG_PEEK and can you give an example?
0
votes
1answer
40 views

Knowing when machine is connected to Internet (Event) [duplicate]

I am creating a Win Forms Application(C#). I need to keep it running 24/7 and submit some XML data when connected to Internet. I am aware of few methods which keep pinging a solid domain to check if ...
0
votes
3answers
490 views

PHP hanging on socket_read

I am trying to read a response from a socket I have written on a Java application. However the PHP is just hanging. Here is the code I am using to read from the socket: while($resp = ...
0
votes
3answers
49 views

Does it make sense to do a select() when using ONLY 1 non-blocking socket?

My application has ONLY 1 Unix TCP socket that it uses to recv() and send(). The socket is non-blocking. Given this, is there an advantage in doing a select() before a send()/recv()? If the ...
-1
votes
0answers
25 views

Multiplayer Internet Programming C++ SDL [closed]

I'm using C++ and SDL to create a really simple game. The game is a board game in which I want to create a way for users to play online. I don't need anything like Warcraft III style game searching. ...
1
vote
1answer
37 views

Calling boost::asio::read() in a thread blocks calling thread or process?

I'm quite new to network programming and I'm writing a program that should accept many TCP connections and receive data from them. To make things go parallel, the agent should read data from each ...
0
votes
3answers
25 views

StreamCorruptedException for Server-Client app

My Server runs this code in a Thread, so that I can interact with the GUI while I am waiting for my client to connect.(I am only using 1 client and 1 server at the moment.) @Override public void ...
5
votes
2answers
2k views

How do I retrieve an error string from WSAGetLastError()?

I'm porting some sockets code from Linux to Windows. In Linux, I could use strerror() to convert an errno code into a human-readable string. MSDN documentation shows equivalent strings for each ...
0
votes
0answers
33 views

Can't Acess Socket

try { if (!bContinueCapturing) { //Start capturing the packets... btnStart.Text = "&Stop"; bContinueCapturing = true; //For sniffing the socket ...
0
votes
1answer
35 views

Add a header to a string and sending it with TCP socket

I have a client/server that exchanges messages, and i am trying to add the size of the string i am sending, in the beginning of the string, in order for the server to know how many bytes to read. I ...
2
votes
1answer
728 views

Weird behavior : sending image from Android phone to Java server (code working)

I'm writing an android app that sends an image to a server running a java app, and it's working in a very weird way! Here is what I do Compile and run the Java app on the desktop with the receive ...
1
vote
1answer
56 views

Sending large files (~ 1GB) fails with SocketException

I'm trying to send large files using socket programming in java for a p2p file sharing application. This code is sending 200-300 mb files without any problems, but for large files around 1 gb it is ...
0
votes
1answer
16 views

how libevent detect that a socket is closed

if I add an event for a specific socket to event loop, for example, a TCP connection socket. then it may happen that the socket is closed, then how will libevent act? can it detect this? thanks!
0
votes
0answers
20 views

Reading Partial Messages in NetworkStream Async Read Callback

We have a C# application that is communicating with a device over TCP/IP using a relatively simple protocol consisting of a series of messages, which have a fixed-size header and a variable length ...
-1
votes
1answer
34 views

Reading bytes from network socket in Python

I want to write a Python program that gets data from a network socket and then scans the data looking for particular sequences of data. The 'getting from the network' bit works fine, and I can dump ...
1
vote
1answer
22 views

How can I detect when a stream client is no longer available in PHP (eg network cable pulled out)

Is there any way (other than checking for ping responses) to detect when a client stream (I don't know if a stream would be any different from sockets) becomes unavailable (ie there is no longer any ...
1
vote
3answers
808 views

Unblocking accept()

I have a blocking call to accept(). From another thread I close the socket, hoping that it'll unblock the accept() call, which it does but I have a case when it doesn't: e.g. thread A enters accept(), ...
1
vote
1answer
42 views

arp request and reply using c socket programming

I am trying to receive and send arp packets using c programming in Linux (ubuntu) My program works fine [ with out any error ], but i can not get the packets from wireshark. source code: my source ...
0
votes
1answer
85 views

TCP communication stops with firewall on

I am having a server client application developed in vb.net. The server app sends a file to the client app at regular intervals. It uses TCP/IP to send files. After installing the application the ...
0
votes
0answers
26 views

Java NIO: Object serialization

I'm trying to send a serialized object from a NIO client to a NIO server, but I don't know how to get the serialized object into the ByteBuffer. Some further questions: How do I choose the right ...

1 2 3 4 5 351