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)

1
vote
1answer
11 views

PHP Sockets - socket_sendto() - UDP Header Mismatch

running into a problem I can't quite explain. I'm building an interface to a system that sends a 36-byte 'notification' packet, and expects a 36-byte 'acknowledgement' packet. The 36-byte payload is ...
0
votes
0answers
10 views

“Unconnected” async socket prevents application shutdown

I wrote a small c# class to check for TCP connectivity (connection to TCP socket succeeds), using BeginConnect(). It appears to work well, IF the endpoint in question is available and the TCP session ...
0
votes
1answer
16 views

How to run a “try/finally”-like method when closing a cmd window running Python script?

I am creating a Python Server/Client chat program (like AOL instant messenger) using sockets. I run into a problem when I force quit the server or the client because my socketInstance.recv() method is ...
0
votes
0answers
10 views

In what format SMPP protocol data unit (PDU) is sent and received in send and recv socket system call ?

Whether the PDU goes in the form of structure or a string ? (In any mode). I am making a C program and want to send a message to a mobile number via SMPP. Either I use a structure or send every PDU ...
0
votes
0answers
24 views

C Socket Append Data To Buffer Gets Corrupted

I'm still refining my C coding skills and keep running into issues with properly managing memory--go figure. Anyhow, I'm reading from a socket and I'm fine as long as my total response length from the ...
0
votes
0answers
24 views

Why doesn't this SSL tunnel in C# work?

I'm trying to build an SSL tunnel in C# that works something like stunnel in client mode; i.e. forwarding unencrypted connections to encrypted connections. Why doesn't this work? using System; ...
0
votes
0answers
3 views

packetsocket opened on loopback device receives all the packets twice. How to filter these duplicate entries?

when i open a packetsocket on a loopback interface (lo) and listen all the packets are seen twice. why is it so? But a capture on the interface using tcpdump correctly ignores the duplicate entries. ...
-4
votes
0answers
18 views

Read from java sockets until pattern or timeout [closed]

I am wondering how to: Read from java sockets until pattern or timeout. I need efficient way to read from socket and return as soon as pattern in stream is found(The word @done@ in this case). ...
0
votes
0answers
6 views

Windows firewall rules and the 10050 error(ipv6)

First things first: I used netsh.exe to check the status of all my laptop's network interfaces and they are all enabled(IPV6 is also enabled). But every time I try to connect using my new IPV6 SCTP ...
0
votes
0answers
14 views

why TCP sends a lot of RST when I abortively close a tcp connection by setting SO_LINGER

I abortively close a tcp connection from the following lines: setsockopt(sockfd, SOL_SOCKET, SO_LINGER, &so_linger, sizeof(so_linger)); close(sockfd); I use tcpdump to capture packets, and I ...
0
votes
1answer
26 views

C++ Open a stream on a socket fd

I would like to open a stream on a sockect's fd, to read and write on it, but without using C functions, like open() read() or write(). I watched around fstream but apparently nothing to do what I ...
0
votes
0answers
3 views

browser addon to open Internet connection

I am looking for an addon that opens a connection to a specific server on a specific port. The server knows about the addon and expects contact on that port. After authentication, the addon would send ...
0
votes
0answers
17 views

c# socket server with objective-c socket client

I have socket server written in C# and the client is Objective-C. The problem I'm facing is that, the server cannot identify the client socket disconnect. In case when I use a C# based socket client, ...
0
votes
1answer
21 views

TCP Socket Data Send/Recv Operation

I'm working on a MMO game server. I have to understand TCP data send/recv operations (not usage, detail). I want to ask this: If I send a 5kb data from a .net socket client, may server socket handle ...
0
votes
0answers
9 views

Broken pipe exception when android writes data on the Bluetooth socket

I wrote two piece of code for bluetooth communication between my PC and my android Mobile device. my PC device opens a bluetooth server socket and my android mobile device wants to connect as a client ...
0
votes
3answers
45 views

Detect if connection is failed - Java Android

How to check if server is online or offline, and if is offline start connecting until server is on. I have tried with this: connectBtn.setOnClickListener(new View.OnClickListener() { ...
0
votes
0answers
7 views

Google App-engine SSL Sockets crashes when using java-apns

I am trying to use java-apns to send push notifications from google app-engine. I get the following error: java.lang.NoSuchMethodError: sun.security.ssl.SSLSocketImpl.needToSplitPayload()Z The only ...
0
votes
2answers
32 views

Socket using BufferedOutputStream/BufferedInputStream receives bogus data random

I have a client/server application that sends/receives data using BufferedOutputStream / BufferedInputStream . The protocol of communication is the following: Send part : first byte is the action ...
0
votes
0answers
20 views

Use xcode debug socket program error

In xcode, I am trying to debug a socket program, but it doesn't work. I think it is depending on root permissions? How do I run this code using root permissions? thanks! bind(listenfd, (struct ...
-2
votes
2answers
43 views

Receiving data when app is in background [closed]

problem: I receive data over a socketconnection. I want to keep the connection up,and still receive data, when the app is running in the background, e.g. the user gets a call. Is there a way to ...
0
votes
1answer
22 views

How to send structure data in socket programming?

I'm studying c socket programming lately,so I write an example for practice of Client–server model. I use structure as message data to send to server, server processes the data. when i run in the IOS ...
0
votes
0answers
28 views

If I want to call SSL_shutdown() with non-blocking sockets, do I need to keep calling SSL_read() first until it yields SSL_ERROR_WANT_READ?

Given a scenario where: multiple SSL/TLS records have arrived on a single socket those records are parsed one at a time with SSL_read() (and a large enough buffer to hold them). prior to parsing the ...
0
votes
1answer
30 views

Simple Client-Server application with Blacklist verification by Network

I'm building a simple Client-Server application and I wanted to implement some kind of Blacklist verification to it. Currently I have an IP Blacklist verification working, which reads a String from a ...
0
votes
0answers
11 views

Using Java JSON library to connect and manage Open vSwitch

I'm trying to use a JSON RPC library for Java to connect and manage Open vSwitch OVSDB server. Not sure where to start though...how does JSON connect to a TCP socket?
0
votes
1answer
21 views

Java ssl server/client application passing byte []

I am creating an application in java (server / client) that uses a secure connection (ssl). The main class has the initialization of sockets and streams: server main class: public static void ...
-1
votes
0answers
29 views

Can I reset socket's connection with TCPClient? [closed]

I try reconnect connection but when I finish, connect and send only received the policy (flash) but when I send normal packet not received anything. Sorry for my English, I'm Spanish.
0
votes
1answer
26 views

Can ZeroMQ be used to accept traditional socket requests?

I'm trying to re-write one of our old Servers using ZeroMQ, for now I have the following Server setup, (which works for Zmq requests): using (var context = ZmqContext.Create()) using (var ...
0
votes
1answer
17 views

Receiving files from Java server to Android. accept() not working

Hi guys I'm creating simple interactive android application. Server runs Java. It turns out, that I can not receive files from server. Android code is following public class MainActivity extends ...
0
votes
1answer
41 views

Unexpected value read from socket fd

Implementing a TCP server/client chat, I wanted to validate that the username of a new client doesn't exist already. The server's code part is: do { err=0; if(write(socketFd[(int)idx], ...
0
votes
0answers
17 views

send continous bytes[] data into DatagramSocket,DatagramPacket in java

I'm making a java desktop application, where I'm recording voice from the mic and in LAN real time want to send this voice data to another computer system and vice-verse. I'm able to record sound ...
0
votes
0answers
10 views

CLOSE_WAIT sockets with axis2 1.4.1

I am working on system J2EE app that uses AXIS2 1.4.1 to make web service calls over SSL I have the same issue as: https://issues.apache.org/jira/browse/AXIS2-2883 **CLOSE_WAIT slowly building up ...
0
votes
0answers
19 views

Fusing(cating) two socket fds without writing code un POSIX environment

I've got two file descriptors that are sockets and need to be handled with send/recv. Currently this does that for me (the code works and is not an issue, just an example): static void cat(int fd, ...
0
votes
1answer
40 views

Can't send data to client using winsock2.lib

We have tcp/ip application project and using winsock2.lib in our source code, server and client functions are below: server: #undef UNICODE #define WIN32_LEAN_AND_MEAN #include <iostream> ...
0
votes
0answers
14 views

AF_PACKET on OSX

On Linux, it's possible to create a socket with AF_PACKET to receive raw data from socket and do IP filtering in the application. But the man page in OSX doesn't have this: PF_LOCAL ...
0
votes
1answer
26 views

LuaSocket in Windows - How to install and use it in an Eclipse Project

When I run my code in terminal, local function main() local socket = require ("socket.http") end main() I get this error/message: module 'socket.http' not found: no field ...
0
votes
1answer
19 views

socket hanging and node crashing

I have a node app that posts data to remote apis and fetches the responses. It works fine but at times the node server crashes and generates the following errror: events.js:71 throw arguments[1]; // ...
0
votes
0answers
38 views

socket “accept” crashes when PC is disconnected

PROBLEM SOLVED On the beginning - sorry for my English. I have server socket, that waits for connection from client. I'm using winsock.h header and #pragma comment(lib, "wsock32.lib"). 1 - My ...
-1
votes
0answers
26 views

how to calculate the latency, throughput and bandwidth for Ping Pong and Underload packets

I have TCP/UDP application over LAN, and I have N packets of size 1KB or 10KB I want to send these packets either ping pong (1 pkt per time and I wait until to receive it) or under-load(M packets per ...
1
vote
2answers
41 views

Chat client - Socket and server socket concurrently

So for a project I am making a little peer to peer, two person chat client using Java in the Netbeans IDE. My question isn't exactly code but more about structure and how to implement. What I want ...
0
votes
0answers
27 views

socket.error: [Errno 61] Connection refused in Neurosky

I got error message below: Traceback (most recent call last): File "/Users/morichoujou/Google Drive/Mythesis/MindSet python/rawEeg.py", line 144, in <module> tgc = ThinkGearConnection() ...
0
votes
1answer
11 views

Why does the background only show when the other player picks a spot?

I am making a Connect 4 game for two players over LAN using sockets. When the server player (player one) makes a choice, he does not see his own selection, only the other player does. When the other ...
1
vote
1answer
50 views

TCP connection drops first byte

I'm trying to send a few bytes from Windows 7 to a virtual Ubuntu machine (oracle virtual box) using Java 7 64 bit server vm. This code runs on Windows ServerSocket server = null; try { server = ...
0
votes
0answers
8 views

Sendto eror on Unix Domain sockets

I have an android app with a JNI code that uses sendto() to send a UDP packet to a unix domain socket int result = sendto(socket, data, length, 0, (struct sockaddr*)&sa, salen); This works well ...
-1
votes
1answer
28 views

Sending rows of a matrix to different clients (Java socket communication)

I can't seem to find something related to what I need. I need to communicate with multiple clients. I have a matrix and want to send each row of that matrix to different clients, I thought of sending ...
0
votes
1answer
23 views

IRC bot to auto-ban spammers in a room?

I want to make an IRC bot to automatically join as a user in a IRC channel (in a webchat) and then stay online the bot to ban users who are spamming What I need to start doing this? Which knowledges? ...
0
votes
0answers
47 views

Android TCP socket in two threads

I have a problem in my Android app. In activity (in button/seekbar handlers) I use TCP socket to write command (data) to external device. Everything is ok with this part, and device reacts ...
-2
votes
2answers
48 views

Netty or java.net.Socket for green field project?

When starting a green field project, is it recommended now to use Netty project instead of java.net.Socket? When to use Netty and when to use java.net.Socket? The project is to connect to Redis. ...
0
votes
1answer
22 views

Can a descriptor created by socket() be mapped to a memory buffer?

Is there a way to map a descriptor created by socket() to a memory buffer? The reason why I am looking for this is because I want to make an existing application to read from the memory buffer I ...
0
votes
1answer
34 views

Data loss in Java Swing Socket

Im working on a chat project using java swing where i am using Socket programming for chat msg, commands etc. While testing i found that there is data loss in transfers send to server program from ...
0
votes
0answers
16 views

Log4J Appender UDP

I need to use log4j to append logs to a socket with UDP. However, I cannot find much on the internet about how to do so. In Log4J, the socketappender uses TCP. So I got log4j 2 beta, but I can't ...

1 2 3 4 5 360