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
2answers
38 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
0answers
8 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 ...
0
votes
1answer
12 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
38 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
0answers
23 views

Multiplayer Internet Programming C++ SDL

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. ...
0
votes
0answers
30 views

Can't Acess Socket

try { if (!bContinueCapturing) { //Start capturing the packets... btnStart.Text = "&Stop"; bContinueCapturing = true; //For sniffing the socket ...
0
votes
1answer
11 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
30 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 ...
1
vote
1answer
46 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
3answers
40 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 ...
0
votes
0answers
18 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 ...
0
votes
0answers
7 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 ...
0
votes
1answer
25 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; ...
1
vote
1answer
17 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 ...
0
votes
0answers
21 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
votes
1answer
24 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 ...
0
votes
2answers
43 views

Windows socket errorcode 10055

I've developed an app that uses sockets over windows. It works perfectly but after some time, the internet connection begin to fail and finally I get this error (10055), which means that my app run ...
-3
votes
0answers
31 views

connect two PCs over internet using TCP/IP [closed]

I am trying to connect two PCs using Scoket programming in java. I have made connection by using IP address and port no in LAN but i am not sure how to connect two PCs over internet or how can i give ...
0
votes
0answers
24 views

Security For android/javaI

I am about to start a contract with a company and they need their data which I will be sending via sockets to be securely transferred from their Android device to a Java server. To do so I am going to ...
1
vote
1answer
35 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
0answers
28 views

Sending Data to TCP Client gets Hanged after some interval

I have a program which makes a TCP Connection with multiple clients and stores the socket connection and client id in HashMap and sends the data to client by reading the data from UDP Socket. please ...
0
votes
2answers
22 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 ...
1
vote
1answer
30 views

How to use one object every time on form submit?

I am working with sockets in PHP and Yii. I have a form with following fields: ip port message Action is called containing following socket programming code and packet is sent successfully when I ...
0
votes
1answer
24 views

Socket Error without using System.Net.Sockets

I am going to ask you a stupid question once again. I am getting the following error: A request to send or receive data was disallowed because the socket is not connected and (when sending on a ...
0
votes
1answer
28 views

Get a response from a server on port 80 with sockets

I need to get a response from a server on port 80. I want to connect with a socket (ip+port) to it, and get a return from the server. I need to now what he tries to tell me. For the socket I use the ...
0
votes
2answers
27 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 ...
0
votes
0answers
30 views

ASync Socket programmer

I'm having an issues with a new socket server. The program has a listener that receives requests from a client. It also has a async connection to another server. So when a request comes in it brokers ...
0
votes
1answer
19 views

How can I make my multicast packet to reach a particular virtual interface?

I need clarification on how to receive a multicast packet on a particular virtual (VLAN) interface. I have send multicast data from one VLAN interface (eth0.10), I need to receive it on other machine ...
0
votes
1answer
41 views

Framework for creating custom Java Servlets [closed]

I'm creating a Java online game, which will need a Java server for stuff such as login validation, DB manipulation, and the turn-based game itself. The clients will send requests to the server using a ...
0
votes
1answer
14 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!
1
vote
0answers
10 views

Android - Timeout in DataOutputStream.writeUTF

I have an Android app that connects to a TCP Java Server. The data is written with DataOutputStream.writeUTF. I want to simulate a failing GPRS connection, so I did the following: Start up the Java ...
0
votes
3answers
24 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 ...
0
votes
1answer
22 views

can peer A connect to peer B if server is on peer B?

As the title says, can client A connect to client B on different machines, when the server is on the same machine with client B ? Note that the client B and server on the machine have different port ...
0
votes
1answer
25 views

Connect to first free port with TCP using 0MQ

I'm writing a distributed search algorithm in which agents need to listen on a TCP socket for incoming connections. At some point, the agent should bind a free TCP port. Port number is not important ...
0
votes
0answers
34 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
23 views

how to send UDP packets to outside of local net in android

First of all, thanks for your time to reading this article. I'm having trouble with socket programming. I want to send UDP/TCP packets (any of them) from android service or windows service to android ...
0
votes
1answer
20 views

Connection refused on client and server, both are on MAC

I am using Mac book and having client and server running on same machine. Server opens socket whenever it has to send command to Client. Problem is Client opens socket at startup but whenever server ...
0
votes
2answers
46 views

Socket tcp c# how to clear input buffer?

I'm writing an application for windows phone and I need to communicate with a server and transmit data. The SERVER is written in C++ and I cannot modify it. The CLIENT is what I have to write. The ...
0
votes
0answers
21 views

socket connection reseting after client disconnect

Good day all I have a java server which can support multiple clients via threads. But after my first client disconnects my server restarts and and keeps on restarting. Here is my code for the server ...
-1
votes
0answers
20 views

Event based non blocking client connection

I need to write a smtp client program that will open multiple smtp sockets , each connecting to a smtpd server (non blocking) in a single thread/process and simultaneously send mails to each server ...
0
votes
2answers
13 views

Connecting to a serversocket from internet to a system connected to internet via LAN

I want to connect to a server which is connected to internet via LAN. So in the client side i need to write code like new Socket("i dont know the ip",PORT_NO) Here which ip address should i give? ...
0
votes
0answers
14 views

Unable to dial using rild-debug?

Im trying to use dial using rild-debug socket. but when im doing it sometimes the modem crash occurs and other times rild crash occurs. Im unable to get through the problem even after disabling the ...
0
votes
0answers
12 views

socket_connect does not timeout

I am using sockets to send data to a server that may not be responding. So I am trying to define a timeout by using this solution in SO. Make PHP socket_connect timeout socket_set_option($socket, ...
0
votes
1answer
35 views

Hibernate & Tomcat - won't close socket

When I keep sending http requests to my webserver, it stops responding and I'm stuck in a white screen saying, 'waiting for xxx'. It goes unresponsive. Also I don't see any exception on stacktrace. I ...
0
votes
1answer
39 views

socket send and retrieve

Good day all i am new to java and i would like to know if someone can help me with this problem I have a server and it receives info from the client but my if statement to check the value that was ...
0
votes
0answers
15 views

PHP socket_recv detect disconnect from server

I've posted below the entire bot's source code, with edited values for passwords and such. My bot for IRC works great, doesn't disconnect for the most part... but after 2-3 days, the bot hangs ...
1
vote
1answer
28 views

nodejs - How to test whether remote socket is open

I am creating a socket pass through inspector. Basically, I start up a socket server (net.createServer) and a socket client (net.connect). For testing purposes, I do not have a endpoint socket ...
1
vote
1answer
31 views

GUI not updating as expected/control flow issue

I'm making a networked Battleship game for a school project. The GUI features a grid of JButtons that serves as the game board. When the user clicks a button, it calls the sendShot() method below. ...
-3
votes
1answer
64 views

do while didn't go to next line even though it should end

I'm recently on a socket project. When I'm debuging my code I found a problem but I can't find out why, below is my code // some code that open a socket connection and put inputstream into a ...
0
votes
2answers
26 views

TCP sockets sr.readline prevents entering data on console?

Below you will find my code. THe thing is, this is supposed to be a "client chat" program so you would be able to send message constantly. However, somehow the app is blocked by console.readline() so ...

1 2 3 4 5 350