First page Back Continue Last page Overview Graphics

Spot the syscalls (1 of 2)

  • while ((my $newsock = $sock->accept()))

  • {

  • my $buf;

  • $newsock->recv($buf, 1024);

  • print $buf;

  • undef $newsock;

  • }


    Notes: