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 SkipVought 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. thekira

    Socket programming, problem with fork

    Thanks. I changed 'wait' to 'IGNORE' and it works. I thought I can't just ignore the signal... but it works ;) Thanks once again!
  2. 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