#!/pkg/bin/ksh
###
### March 2004, Simon Osborne
###
### Copyright (c) 2004-2006 by cisco Systems, Inc.
### All rights reserved.
###
### If the 'all' AFI parameter was specified in a show ltrace command, this
### process is run to execute the separate ipv4 and ipv6 requests.
###
### All args are passed through unchanged.
###

echo "";
echo "IPv4 trace data:";
echo "----------------";
show_ipv4_rib_ltrace $@;
echo ""
echo "IPv6 trace data:";
echo "----------------";
show_ipv6_rib_ltrace $@;

