When I run this tcp server script from the command line I can not exit out of the xterm that started the server. I simply don't know where to start to clear up this idiosyncrosy of this script. Any help would be greatly appreciated.
Here is the script
#!/usr/bin/perl
use IO::Socket;
use warnings;
use strict;
my $server_port = 6002;
my ($input, $my_addr );
my $allowed = "192.168.0.53";
# Forking into a new daemon
my $pid = fork;
exit if $pid;
die "Couldn't fork: $!\n" unless defined($pid);
# make the socket
socket(SERVER, PF_INET, SOCK_STREAM, getprotobyname('tcp'))
or die "Can't create socket: $!\n";
# so we can restart our server quickly
setsockopt(SERVER, SOL_SOCKET, SO_REUSEADDR, 1)
or die "Can't setsockopt $!\n";
$my_addr = sockaddr_in($server_port, INADDR_ANY);
bind(SERVER, $my_addr)
or die "Couldn't bind to port $server_port : $!\n";
# establish a queue for incoming connections
listen(SERVER,SOMAXCONN)
or die "Can't listen to socket: $1";
# accept and process connections
while (my $response = accept(CLIENT,SERVER)) {
next unless(defined($input = <CLIENT>));
my ($fpart, $spart) = sockaddr_in($response);
my $ipaddr = inet_ntoa($spart);
unless ( $ipaddr eq $allowed ) {
send (CLIENT,"Sorry, ($ipaddr) is not an allowed hosts...\n",0);
}
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.