flowlist.h
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:0k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #include<stdio.h>
  2. #define hop_limit 50
  3. struct flow_list{
  4. double time;
  5. double bw;
  6. struct flow_list *next;
  7. };
  8. struct flow_event{
  9.   double delay;
  10.   double deltaCBR;
  11.   double NetCBR;
  12. };
  13. struct flow_list *create_new_flow_event(double time, double bw);
  14. void flow_list_insert(double time, double bw, struct flow_list **root);
  15. void dump_flow_list_to_file(FILE* file, struct flow_list *root);
  16. int get_no_events(struct flow_list *root);
  17. struct flow_event* get_all_events(struct flow_list *root);