File: report.h

package info (click to toggle)
libtrace3 3.0.22-0.2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,452 kB
  • sloc: ansic: 24,574; sh: 11,372; cpp: 1,811; makefile: 460; yacc: 96; lex: 50
file content (35 lines) | stat: -rw-r--r-- 1,163 bytes parent folder | download | duplicates (6)
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
27
28
29
30
31
32
33
34
35
#ifndef REPORT_H
#define REPORT_H

void dir_per_packet(struct libtrace_packet_t *packet);
void error_per_packet(struct libtrace_packet_t *packet);
void flow_per_packet(struct libtrace_packet_t *packet);
void misc_per_packet(struct libtrace_packet_t *packet);
void port_per_packet(struct libtrace_packet_t *packet);
void protocol_per_packet(struct libtrace_packet_t *packet);
void tos_per_packet(struct libtrace_packet_t *packet);
void ttl_per_packet(struct libtrace_packet_t *packet);
void tcpopt_per_packet(struct libtrace_packet_t *packet);
void synopt_per_packet(struct libtrace_packet_t *packet);
void nlp_per_packet(struct libtrace_packet_t *packet);
void ecn_per_packet(struct libtrace_packet_t *packet);
void tcpseg_per_packet(struct libtrace_packet_t *packet);

void drops_per_trace(libtrace_t *trace);

void dir_report(void);
void error_report(void);
void flow_report(void);
void misc_report(void);
void port_report(void);
void protocol_report(void);
void tos_report(void);
void ttl_report(void);
void tcpopt_report(void);
void synopt_report(void);
void nlp_report(void);
void ecn_report(void);
void tcpseg_report(void);
void drops_report(void);

#endif