1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
/*
* TCP-Linux module for NS2
*
* May 2006
*
* Author: Xiaoliang (David) Wei (DavidWei@acm.org)
*
* NetLab, the California Institute of Technology
* http://netlab.caltech.edu
*
* Module: linux/ns-linux-param.h
* This is the header file Linux parameters
*
* See a mini-tutorial about TCP-Linux at: http://netlab.caltech.edu/projects/ns2tcplinux/
*
*/
#ifndef NS_LINUX_PARAM_H
#define NS_LINUX_PARAM_H
extern unsigned char sysctl_tcp_abc;
extern unsigned char tcp_max_burst;
extern unsigned char debug_level;
#endif
|