Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
238 views

Getting client IP from Ruby script through xinetd

How can I get the client IP Address from inside a Ruby script that is launched by xinetd through a stream socket? In PHP I would just use stream_socket_get_name(STDIN, true); Thanks in advance!
1
vote
1answer
103 views

Handle SSL connections from an inetd ruby script

I'd like to run a Ruby script that handles encrypted communications from inetd. As I need the certificate information for further processing, I can't "offload" the SSL to something like stunnel. In ...
1
vote
2answers
149 views

Method to send an encryption key over an insecure connection?

I am using Botan utility to perform encryption. When I initialize my connection to a remote machine using SSH, I am able to trade keys over the secure SSH connection. However, sometimes I use inetd to ...
1
vote
1answer
35 views

Starting a Process When a Port is Connected To

I want to create a single client that issues unicast requests for data from any of many workstations on the same LAN. The client will likely run Linux, but the workstations may run any OS. Is it ...
1
vote
3answers
816 views

How to get client IP from java server through xinetd?

I am running a small java server through xinetd superserver. I'd like to get the originating client IP but I can't because streams are between xinetd and java (stin/stdout). Does somebody know how to ...
1
vote
3answers
3k views

Why can't gdb attach to server application summoned with inetd?

I have a server application that can be summoned for the client using inetd. However, if I try to attach to the server process that was launched with inetd, I get the following response: ptrace: ...
1
vote
1answer
326 views

Why does write() to pipe exit program when pipe writes to stdout?

I have a server application that writes to a popen("myCommand", "w") file descriptor in a separate thread and if the command passed to popen() results in any output to stdout or stderr, the my ...
1
vote
4answers
674 views

To inetd or not to inetd… when should I use inetd for my network server program?

Can anyone give a concise set of real-world considerations that would drive the choice of whether or not to use inetd to manage a program that acts as a network server? (If inetd is used, I think it ...
0
votes
2answers
391 views

Xvnc4 started from xinetd only displays empty gray X screen

I'm attempting to setup an Ubuntu 10.10 box so that anyone can connect to port 5900 and be greeted by the gdm login manager. To do so, I added a vnc entry in /etc/services and I am starting Xvnc4 ...
0
votes
3answers
285 views

Recovering IP/Port from Socket Descriptor

I'm writing a clone of inetd in which I must run a server that prints the IP and port of the client connecting to it. As I overwrite STDIN and STDOUT with the socket descriptor, my initial solution ...
0
votes
1answer
100 views

Python: Run WSGI server from inetd?

As the title suggests, is it possible to run a WSGI server from (x)inetd?
0
votes
1answer
54 views

Terminating inetd service [closed]

I have written some simple inetd-Service in C. It reads a string from the user, compares it to another string and then terminates. At least, this is what I want it to do. After reaching the ...
0
votes
4answers
290 views

How to find location of executable on Linux when normal methods fail?

In another question, the answer states that on Unixes with /proc, the really straight and reliable way is to readlink("/proc/self/exe", buf, bufsize) and it then proceeds to give backup solutions as ...
0
votes
3answers
258 views

How to debug a weird threaded open fifo issue?

A web service is configured to expose some of its data when receiving a USR1 signal. The signal will be sent by a xinetd server when it receives a request from a remote client, e.g. nc myserver 50666. ...