File: esp.h

package info (click to toggle)
ipgrab 0.8.2-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 540 kB
  • ctags: 555
  • sloc: ansic: 4,608; sh: 1,507; makefile: 120
file content (20 lines) | stat: -rw-r--r-- 393 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/**************************************************************************** 
** File: esp.h
**
** Author: Mike Borella
**
** Comments: Structure of ESP packets
**
*****************************************************************************/

/*
 * Static part of ESP header
 */

typedef struct _ESPHdr
{
  u_int32_t spi;
  u_int32_t seqno;
} ESPHdr;

void dump_esp(u_char *bp, int length);