Help for this page

Select Code to Download


  1. or download this
    use IO::Socket::UNIX;
    
    $SIG{INT} = sub { unlink "/tmp/sock" };
    ...
      }
      $sock->close;
    }
    
  2. or download this
    use IO::Socket::UNIX;
    use IO::Select;
    
    ...
      }
      $sock->close;
    }