Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. BlakeEM

    sending mirror requests over http::daemon server?

    I have been stuck on this for a while. I have an http::daemon server running. I accept connections from the client to do various things, mostly pull down files. One thing I do on the client side is use the mirror function to check if a file is up to date or not with the file on the server and...
  2. BlakeEM

    Get connection IPs from http::daemon server?

    Ahh I found it after looking around all over. For anyone curious... $other_end = getpeername($c); ($port, $iaddr) = unpack_sockaddr_in($other_end); $ip_address = inet_ntoa($iaddr); $c is from accept() when you get the connection. ~Blake
  3. BlakeEM

    Get connection IPs from http::daemon server?

    I tried the $ENV{'REMOTE_ADDR'} but doesn't work. It seems their has to be some sort of command to get it. ~Blake
  4. BlakeEM

    Get connection IPs from http::daemon server?

    I have a server that uses http::daemon to accept requests. I need a way to get the IP of the users connecting to the http::daemon but I can't seem to find out how to do this. Another way might be to some how get the IP of the user connected to the port that the http:daemon is on but I haven't...

Part and Inventory Search

Back
Top