ipsec.c (9c79794016d679440487dea61b3b986397c9ecbb) | ipsec.c (f6dfe47a145263dc5eb67fa4789925ab708709bc) |
---|---|
1/* $FreeBSD$ */ 2/* $KAME: ipsec.c,v 1.103 2001/05/24 07:14:18 sakane Exp $ */ 3 4/*- 5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 234 unchanged lines hidden (view full) --- 243static void vshiftl __P((unsigned char *, int, int)); 244 245MALLOC_DEFINE(M_IPSEC_INPCB, "inpcbpolicy", "inpcb-resident ipsec policy"); 246 247#ifndef VIMAGE_GLOBALS 248static const vnet_modinfo_t vnet_ipsec_modinfo = { 249 .vmi_id = VNET_MOD_IPSEC, 250 .vmi_name = "ipsec", | 1/* $FreeBSD$ */ 2/* $KAME: ipsec.c,v 1.103 2001/05/24 07:14:18 sakane Exp $ */ 3 4/*- 5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 234 unchanged lines hidden (view full) --- 243static void vshiftl __P((unsigned char *, int, int)); 244 245MALLOC_DEFINE(M_IPSEC_INPCB, "inpcbpolicy", "inpcb-resident ipsec policy"); 246 247#ifndef VIMAGE_GLOBALS 248static const vnet_modinfo_t vnet_ipsec_modinfo = { 249 .vmi_id = VNET_MOD_IPSEC, 250 .vmi_name = "ipsec", |
251 .vmi_size = sizeof(struct vnet_ipsec), |
|
251 .vmi_dependson = VNET_MOD_INET, /* XXX revisit - INET6 ? */ 252 .vmi_iattach = ipsec_iattach 253}; 254#endif /* !VIMAGE_GLOBALS */ 255 256void 257ipsec_init(void) 258{ --- 1564 unchanged lines hidden --- | 252 .vmi_dependson = VNET_MOD_INET, /* XXX revisit - INET6 ? */ 253 .vmi_iattach = ipsec_iattach 254}; 255#endif /* !VIMAGE_GLOBALS */ 256 257void 258ipsec_init(void) 259{ --- 1564 unchanged lines hidden --- |