repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
dist
/
ipf
/
ipsd
/
ipsd.h
blob
48f591101b508947589ac015106440ac5c689e02
1
/* $NetBSD$ */
2
3
/*
4
* (C)opyright 1995-1998 Darren Reed.
5
*
6
* See the IPFILTER.LICENCE file for details on licencing.
7
*
8
* @(#)ipsd.h 1.3 12/3/95
9
*/
10
11
typedef
struct
{
12
time_t
sh_date
;
13
struct
in_addr sh_ip
;
14
}
sdhit_t
;
15
16
typedef
struct
{
17
u_int sd_sz
;
18
u_int sd_cnt
;
19
u_short sd_port
;
20
sdhit_t
*
sd_hit
;
21
}
ipsd_t
;
22
23
typedef
struct
{
24
struct
in_addr ss_ip
;
25
int
ss_hits
;
26
u_long ss_ports
;
27
}
ipss_t
;
28