#!/usr/bin/perl
#
# $Id: client-config.pl,v 1.3 2002/11/27 17:23:25 jclopez Exp $
#
# Configuration file for the client
# Language: Perl
#
# Copyright (C) 2002	Julio Lopez	All Rights Reserved.
# See disclaim.txt for disclaimer and copyright information.
#

# Default variable values.

$infile      = "client.in";
$outfile     = "client.out";
$datafile    = "client.dat";
$source_ip   = 0;
$dest_ip     = 0;
$source_port = 0;
$dest_port   = 0;
$seq_num     = 6000;
$ttl         = 20;

$node_port   = 29901;
$local_port  = 18999;
$node_ip     = "127.0.0.1";	# it can be a host name
$timeout     = 60;

1

# $Id: client-config.pl,v 1.3 2002/11/27 17:23:25 jclopez Exp $
