#
# Copyright (C) 2001, 2004, 2007, 2011, 2012, 2016 Internet Systems Consortium, Inc. ("ISC")
#
# 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/.
# $Id: send.pl,v 1.7 2011/03/05 23:52:29 tbox Exp $
#
# Send a file to a given address and port using TCP. Used for
# configuring the test server in ans.pl.
#
while (<>) {
$sock->syswrite($_, length $_);
}
$sock->close;