- or download this
sub dbconnect {
socket(my $mysocket, PF_INET, SOCK_STREAM, getprotobyname('tcp'))
...
# ...
}
- or download this
use strict;
use warnings;
...
socket(my $mysocket, PF_INET, SOCK_STREAM, getprotobyname('tcp')) or d
+ie;
print(fileno($mysocket), "\n");
- or download this
0: 3
1: 4
...
9: 14
--
10