NetBSD/sys/netinet/ip_frag.h

71 lines
1.8 KiB
C
Raw Normal View History

2001-04-06 19:32:40 +04:00
/* $NetBSD: ip_frag.h,v 1.16 2001/04/06 15:32:40 darrenr Exp $ */
/*
2000-05-03 15:12:03 +04:00
* Copyright (C) 1993-2000 by Darren Reed.
*
* Redistribution and use in source and binary forms are permitted
* provided that this notice is preserved and due credit is given
* to the original author and the contributors.
*
* @(#)ip_frag.h 1.5 3/24/96
2001-03-26 10:11:46 +04:00
* Id: ip_frag.h,v 2.4.2.2 2000/11/10 13:10:54 darrenr Exp
*/
#ifndef _NETINET_IP_FRAG_H_
#define _NETINET_IP_FRAG_H_
#define IPFT_SIZE 257
typedef struct ipfr {
struct ipfr *ipfr_next, *ipfr_prev;
1997-05-25 16:40:11 +04:00
void *ipfr_data;
struct in_addr ipfr_src;
struct in_addr ipfr_dst;
2001-03-26 10:11:46 +04:00
void *ipfr_ifp;
u_short ipfr_id;
u_char ipfr_p;
u_char ipfr_tos;
u_short ipfr_off;
2001-04-06 19:32:40 +04:00
u_char ipfr_ttl;
u_char ipfr_seen0;
1999-12-12 14:11:15 +03:00
frentry_t *ipfr_rule;
} ipfr_t;
typedef struct ipfrstat {
u_long ifs_exists; /* add & already exists */
u_long ifs_nomem;
u_long ifs_new;
u_long ifs_hits;
u_long ifs_expire;
u_long ifs_inuse;
struct ipfr **ifs_table;
1997-05-25 16:40:11 +04:00
struct ipfr **ifs_nattab;
} ipfrstat_t;
2001-04-06 19:32:40 +04:00
#define IPFR_CMPSZ (offsetof(ipfr_t, ipfr_off) - \
offsetof(ipfr_t, ipfr_src))
1997-07-05 09:38:14 +04:00
extern int fr_ipfrttl;
2000-05-03 15:12:03 +04:00
extern int fr_frag_lock;
1997-07-05 09:38:14 +04:00
extern ipfrstat_t *ipfr_fragstats __P((void));
1999-12-12 14:11:15 +03:00
extern int ipfr_newfrag __P((ip_t *, fr_info_t *, u_int));
extern int ipfr_nat_newfrag __P((ip_t *, fr_info_t *, u_int, struct nat *));
1997-07-05 09:38:14 +04:00
extern nat_t *ipfr_nat_knownfrag __P((ip_t *, fr_info_t *));
1999-12-12 14:11:15 +03:00
extern frentry_t *ipfr_knownfrag __P((ip_t *, fr_info_t *));
extern void ipfr_forget __P((void *));
1997-07-05 09:38:14 +04:00
extern void ipfr_unload __P((void));
2000-05-03 15:12:03 +04:00
extern void ipfr_fragexpire __P((void));
1997-05-25 16:40:11 +04:00
#if (BSD >= 199306) || SOLARIS || defined(__sgi)
1999-12-12 14:11:15 +03:00
# if defined(SOLARIS2) && (SOLARIS2 < 7)
extern void ipfr_slowtimer __P((void));
1999-12-12 14:11:15 +03:00
# else
extern void ipfr_slowtimer __P((void *));
# endif
#else
extern int ipfr_slowtimer __P((void));
2001-03-26 10:11:46 +04:00
#endif /* (BSD >= 199306) || SOLARIS */
#endif /* _NETINET_IP_FRAG_H_ */