UNIX domain sockets are a technology for interprocess communication on a single computer.
0
votes
1answer
53 views
Linux/Unix Socket Self-connection
When a client try to connect to a server, if client and server are both localhost, self-connection may happen(source port and destination port happened to be the same.). But my problem is, client is ...
1
vote
1answer
66 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.
...
1
vote
1answer
84 views
How to reliably unlink() a Unix domain socket in Go programming language
I have a Go program hosting a simple HTTP service on localhost:8080 so I can connect my public nginx host to it via the proxy_pass directive, as a reverse proxy to serve part of my site's requests. ...
0
votes
1answer
39 views
how do I get a remote global link addr by it's local-link addr?
I get a Routing Information Protocol(RIP) packet, and I can get the link-local addr of the source router from this packet. But I cannot set the route by the link-local addr, I need a global link addr ...
0
votes
1answer
24 views
Close socket opened by zsocket in zsh
I've done:
% zmodload zsh/net/socket
% zsocket -d 20 MY_SOCKET
# used the socket a bit
Now how do I close the socket's FD? (FD 20 here.)
1
vote
1answer
19 views
Compiler error when calling connect(2) with sockaddr_un
I am making a simple call to connect(2), in a C++ program. The code is:
connect(socket_fd, (struct sockaddr *)&name, SUN_LEN(name));
(here, name is a struct sockaddr_un).
When I try to compile ...
0
votes
1answer
44 views
What is the socket path for a custom FCGI Application spawned by the local http server? (ie apache/mod_fcgid, lighttpd/mod_fastcgi, etc. )
I'm working on a fastcgi dev kit written in objective-c/cocoa, that mimics the behavior and structure of AppKit/UIKit (app deleagates, runloops, event queues etc). I've done my homework on fastcgi, ...
4
votes
5answers
268 views
Gracefully shutdown UNIX-socket server on NodeJS running under Forever
I have an NodeJS application which sets up a UNIX-socket to expose some interprocess communication channel (some kind of monitoring stuff). UNIX-socket file is placed in os.tmpdir() folder (i.e. ...
5
votes
2answers
206 views
UNIX sockets: Is it possible to spoof getsockopt() SO_PEERCRED?
Is there a (compatible) way to spoof (as root) the unix socket (file system sockets) peer credentials which can be obtained by getsockopt(), option SO_PEERCRED?
Background:
I need to connect to a ...
-2
votes
1answer
43 views
Where does the unnamed sockets get created [closed]
I am using Unix domain sockets. Want to know about its location in the system.
If I am creating a socketpair using a system call
socketpair(AF_UNIX,SOCK_STREAM,0,fd) ;
I have read it is unnamed ...
2
votes
1answer
117 views
Unix domain socket client won't connect
I've been reading through "The Linux Programming Interface" to try and learn about sockets, in particular unix domain sockets. I've read through Chapter 56 which explains some general concepts, and ...
2
votes
1answer
94 views
Concurrent server using datagrams
A client has to send 2 strings to a server and the server has to send back a string to the client and also treat clients in parallel. The 2 entities exchange data using datagrams under Unix. My ...
1
vote
1answer
111 views
Telnet handling wc and any command that read an input from the keyboard
I am new in UNIX and new in Programming on it using C language.
What I want to do is the simple implementation for telnet.
I made all required connection on both sides(Server & Client).
On the ...
0
votes
3answers
195 views
Force MySQL to use only unix socket
I want my MySQL server to only use unix socket, and ignore the TCP networking, so I added this line to my configuration /etc/my.cnf:
skip-networking
But netstat show me that MySQL still using TCP ...
0
votes
1answer
88 views
socket close inside fork c++
I am trying socket programming and with the server code:
while(1) {
sin_size = sizeof (their_addr);
new_fd = accept(sockfd,(struct sockaddr *)&their_addr, &sin_size);
...
0
votes
1answer
656 views
Performance: TCP loopback connection vs Unix Domain Socket
Working on an Android and iOS based application which require communication with a server running in the same device. Currently using TCP loopback connection for communicating with App and Server (App ...
1
vote
2answers
168 views
Executing child process in new terminal
I want to make a simple chat application for unix.
I have created one server which supports multiple clients. When ever a new client connects to the server a new process is created using fork command. ...
0
votes
0answers
173 views
is node.js server.listen( unix-socket-path ) shared when using clusters?
I have a nodeJS application using the cluster module and socket.io. Some socket.io events need to be passed to a unix-socket. Forked processes DO NOT share resources, but there is only one server ...
3
votes
4answers
243 views
socket_select returns false immediately buth without error code
I'm playing with socket_select, but on one hosting, this function does strange things:
returns immediately, instead of waiting 5 seconds
returns false, indicating some error
but socket_last_error() ...
0
votes
0answers
213 views
Android:Alternative for TCP loopback socket connection for better performance
Developed a networking library using Android NDK (2.3 and above)
Scenerio
Third-party application (TCP socket based ) communicates to our native library.
Our library processes that data and in ...
0
votes
0answers
170 views
Zero Copy Implementation In Unix for UDP Socket Using C
Hi Guys,
I need help from you people to implement zero copy technique for UDP application on Linux (Ubuntu) using C socket programming.
My requirement is to,
Receive UDP packets which contains ...
0
votes
2answers
160 views
Write separate messages with unix domain sockets
I am currently learning to program with unix domain sockets and I have a question about it.
What is the standard way to separate message?
E.g. A server writes two messages and the client needs can do ...
2
votes
3answers
323 views
Unix C socket server not accepting connections
Here's the deal, I'm writing a simple tcp socket server in C (with unix system calls) that I'm not able to get to accept connections.
From what I can tell, I get through the server initialization ...
2
votes
1answer
229 views
Perl IO::Socket::UNIX Connect with Timeout gives EAGAIN/EWOULDBLOCK
Ubuntu Linux, 2.6.32-45 kernel, 64b, Perl 5.10.1
I connect many new IO::Socket::UNIX stream sockets to a server, and mostly they work fine. But sometimes in a heavily threaded environment on a ...
0
votes
1answer
232 views
How to get telnet session's remote port number?
I am trying to get the TCP port number which is used by a remote user's telnet connection.
In case of ssh connection, I am able to get it from SSH_CLIENT env variable, but how to get it in case of ...
3
votes
1answer
160 views
How can PHP gracefully shut down a local socket connection…?
I have a PHP client connecting to a local C server programme via a text-only Unix-domain socket. However, the only way I can get it to shutdown nicely is if I finish the socket session with:
...
3
votes
3answers
716 views
104: Connection reset by peer: nginx + rainbows + over 1 mb uploads
I am running ThreadPool rainbows + nginx (unix socket)
On large file uploads I am getting the following in nginx error log (nothing in the application log):
readv() failed (104: Connection reset by ...
0
votes
0answers
86 views
PHP Unix Socket: close write (ouzput) stream but still receive answer from server
I want to query some data from a local unix socket.
Therefore I have to connect, write some data and then close the write stream as the software will NOT send data until the write stream is closed.
...
2
votes
0answers
158 views
Create link or change python-mysql socket location [duplicate]
While testing SQLalchemy in Python I came over a similar problem to what I earlier also had experienced. This time, however, I could not easily add the mysql-socket path to the MySQLdb connection ...
3
votes
1answer
183 views
Does SCM_RIGHTS have any portable meaning?
I understand how ancillary data with type SCM_RIGHTS can be used to send file descriptors between processes on Linux. But all IEEE Std 1003.1-2008 has to say about it is:
SCM_RIGHTS
Indicates ...
1
vote
1answer
124 views
Buffering characteristics of Unix Sockets
Does anyone know the buffering characteristics of Unix sockets when sending small chunks of data(a few bytes)?, when using TCP sockets I can disable the Nagle algorithm to prevent latency in data ...
1
vote
0answers
76 views
trying out unix network programming
I have been studying unix network programming and have been running servers on 127.0.0.1. But i want to try it on a bigger scale just to spice things up and also get more practical. So, i want host my ...
1
vote
3answers
90 views
issues with select() statements
I have a program that is using select() to poll for a socket ready to be connected.
I have another program that binds to a socket and issues send() commands.
The question I have is if the file ...
5
votes
1answer
383 views
Python: code.interact(local=locals()) where stdin/stdout are not available
In Python, the following code snippet will open an interactive shell upon execution.
import code; code.interact(local = locals())
This has proved tremendously useful for debugging in quite a bit of ...
5
votes
2answers
589 views
Identify other end of a unix domain socket connection
I'm trying to figure out what process is holding the other end of a unix domain socket. In some strace output I've identified a given file descriptor which is involved in the problem I'm currently ...
1
vote
2answers
790 views
Use Python xmlrpclib with unix domain sockets?
I'm trying to interact with supervisord, and I'd like to talk with it over a unix socket (it's a shared hosting environment).
What I've tried so far is:
import xmlrpclib
server = ...
2
votes
3answers
181 views
Binding socket to computer's address for listening
I've created code designed to bind a new socket to the computer's addresses for listening for incoming connections on a specific port. I'm using getaddrinfo. Is this the best way? It seems pointless ...
0
votes
0answers
295 views
sendmsg not working while sending file descriptor
I am using unix domain sockets to send open file descriptor between different processes. Unix domain sockets work fine but when i used sendmsg to send file descriptor something wierd happened. The ...
6
votes
3answers
2k views
Reading a file in real-time using Node.js
I need to work out the best way to read data that is being written to a file, using node.js, in real time. Trouble is, Node is a fast moving ship which makes finding the best method for addressing a ...
0
votes
3answers
324 views
Socket listening on an IP subnet in C / Unix
I'm trying to write a server-client socket program in C. The objective is for the server to listen on a specific port, but across a range of IP addresses belonging to the same IP subnet. This IP ...
2
votes
1answer
124 views
Asynchronous Server, Handle Disconnections while waiting for callbacks
i have one question according to asynchronous server management. I am using libevent2 and (for my own learning experience) plain ANSI C.
I do my stresstests with ab from the apache2 utils. Mostly -n ...
1
vote
1answer
202 views
how to remove a IO::Async::Listener (or its notifier) object from a IO::Async::Loop event in perl
I have a piece of code that creates a UNIX domain socket using IO::Socket::UNIX and gives it to an instance of IO::Async::Listener to handle listening on the socket and notifying on receiving data. ...
3
votes
2answers
218 views
How to check if other end of a socket has been accepted?
I have a client/server set up and I want my client to know if the server has accepted the connection. Otherwise my client has no clue it's still waiting to be accepted. I can't rely on further ...
0
votes
1answer
286 views
Unix Domain sockets (C) - Client “deletes” socket on connect()?
This may be a bit difficult to enumerate succinctly but I will give it my best on my novice understanding of the domain and problem.
I have 2 processes, one stream server who first unlinks, creates a ...
1
vote
1answer
81 views
Twistd socket ownership
I have a daemon which listens to a socket in /var/run. I start the daemon using an init script (as root, obviously), and I'm using the twistd --uid and --gid options to drop privileges to an ...
5
votes
1answer
679 views
SO_PEERCRED vs SCM_CREDENTIALS - why there are both of them?
SO_PEERCRED is simple way to get pid/uid/gid of connected AF_UNIX stream socket, SCM_CREDENTIALS is more or less the same, but more complex (various ancillary messages). Links to example showing both ...
2
votes
1answer
276 views
Is there a way to get the uid of the other end of a unix socket connection
Is there a way for a UNIX domain socket listener to only accept connection from certain user (chmod/chown does not work for abstract socket afaik), or in another word, get the uid of the incoming ...
3
votes
2answers
101 views
Meaning of the $type parameter in socket_read()
I try to create a tcp/ip socket connection from a c# app to a PHP 5.3 script using PHP sockets. The c# app should send JSON strings to the PHP script.
My question in regard to the socket_read manual: ...
4
votes
6answers
342 views
Communication between Rails and Ruby EventMachine Process
I have a rails app which needs to request data from a local running process running EventMachine. What is the best way of implementing this request/response?
1
vote
1answer
587 views
boost asio unix socket reuse
I want to use "each io_service per worker thread" design in my program. But I cant reuse unix socket:
io_service io_1;
io_service io_2;
::unlink("/tmp/test");
stream_protocol::endpoint ...




