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 dencom 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: *

  • Users: thekira
  • Content: Threads
  • Order by date
  1. thekira

    Socket programming, problem with fork

    Hi. I've been trying to write simple server. #!/usr/bin/perl use strict; use IO::Socket; use IO::Select; my $main = new IO::Socket::INET (LocalHost => 'localhost', LocalPort => 6677, Listen => 5, Proto => 'tcp', Reuse => 1 ); die unless $main; $SIG{'CHLD'} = sub { wait; }...

Part and Inventory Search

Back
Top