File: dostraffic.h

package info (click to toggle)
ns2 2.35%2Bdfsg-2.1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 78,780 kB
  • ctags: 27,490
  • sloc: cpp: 172,923; tcl: 107,130; perl: 6,391; sh: 6,143; ansic: 5,846; makefile: 816; awk: 525; csh: 355
file content (20 lines) | stat: -rw-r--r-- 416 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifdef FLOWLISTH
#else
#include "flowlist.h"
#define FLOWLISTH
#endif

#ifdef MODELSH
#else
#include "models.h"
#define MODELSH
#endif

struct DDOS_Traffic{
int NoEvents;
struct flow_event *Events;
};

void CBRTrafficGen(int NetworkDia, double H, int NoAttackers, int Master, double rate, struct DDOS_Traffic *);

void CBRTrafficInet(int NetworkDia, int NoAttackers, int Master, double rate, struct DDOS_Traffic *);