ns-linux-param.c
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /* 
  2.  * TCP-Linux module for NS2 
  3.  *
  4.  * May 2006
  5.  *
  6.  * Author: Xiaoliang (David) Wei  (DavidWei@acm.org)
  7.  *
  8.  * NetLab, the California Institute of Technology 
  9.  * http://netlab.caltech.edu
  10.  *
  11.  * Module: linux/ns-linux-param.c
  12.  * This is the list of linux parameters to be tuned.
  13.  *
  14.  *
  15.  * See a mini-tutorial about TCP-Linux at: http://netlab.caltech.edu/projects/ns2tcplinux/
  16.  *
  17.  */
  18. #define NS_PROTOCOL "tcp_linux.c"
  19. #include "ns-linux-c.h"
  20. unsigned char sysctl_tcp_abc=1;
  21. module_param(sysctl_tcp_abc, int, 0644);
  22. MODULE_PARM_DESC(sysctl_tcp_abc, "whether we needs ABC or not");
  23. unsigned char tcp_max_burst=3;
  24. module_param(tcp_max_burst, int, 0644);
  25. MODULE_PARM_DESC(tcp_max_burst, "the maximum burst size of a TCP");
  26. unsigned char debug_level=1;
  27. module_param(debug_level, int, 0644);
  28. MODULE_PARM_DESC(debug_level, "The debug level: 0: INFO; <=1: NOTICE; <=2: ERROR");