bind9/bin/tests/system/send.pl

31 lines
785 B
Perl
Raw Normal View History

2001-05-10 14:29:09 -04:00
#!/usr/bin/perl
#
# Copyright (C) 2001, 2004, 2007, 2011, 2012, 2016 Internet Systems Consortium, Inc. ("ISC")
2012-06-28 21:39:47 -04:00
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
2001-05-10 14:29:09 -04:00
2011-03-05 18:52:31 -05:00
# $Id: send.pl,v 1.7 2011/03/05 23:52:29 tbox Exp $
2001-05-10 14:29:09 -04:00
#
# Send a file to a given address and port using TCP. Used for
# configuring the test server in ans.pl.
2001-05-10 14:29:09 -04:00
#
use IO::File;
use IO::Socket;
@ARGV == 2 or die "usage: send.pl host port [file ...]\n";
my $host = shift @ARGV;
my $port = shift @ARGV;
my $sock = IO::Socket::INET->new(PeerAddr => $host, PeerPort => $port,
Proto => "tcp",) or die "$!";
while (<>) {
$sock->syswrite($_, length $_);
}
$sock->close;