OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-3.0/] [packages/] [net/] [bsd_tcpip/] [current/] [include/] [netkey/] [key_var.h] - Blame information for rev 786

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 786 skrzyp
//==========================================================================
2
//
3
//      include/netkey/key_var.h
4
//
5
//==========================================================================
6
// ####BSDCOPYRIGHTBEGIN####                                    
7
// -------------------------------------------                  
8
// This file is part of eCos, the Embedded Configurable Operating System.
9
//
10
// Portions of this software may have been derived from FreeBSD 
11
// or other sources, and if so are covered by the appropriate copyright
12
// and license included herein.                                 
13
//
14
// Portions created by the Free Software Foundation are         
15
// Copyright (C) 2002 Free Software Foundation, Inc.            
16
// -------------------------------------------                  
17
// ####BSDCOPYRIGHTEND####                                      
18
//==========================================================================
19
 
20
/*      $KAME: key_var.h,v 1.12 2001/11/06 03:48:29 itojun Exp $        */
21
 
22
/*
23
 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
24
 * All rights reserved.
25
 *
26
 * Redistribution and use in source and binary forms, with or without
27
 * modification, are permitted provided that the following conditions
28
 * are met:
29
 * 1. Redistributions of source code must retain the above copyright
30
 *    notice, this list of conditions and the following disclaimer.
31
 * 2. Redistributions in binary form must reproduce the above copyright
32
 *    notice, this list of conditions and the following disclaimer in the
33
 *    documentation and/or other materials provided with the distribution.
34
 * 3. Neither the name of the project nor the names of its contributors
35
 *    may be used to endorse or promote products derived from this software
36
 *    without specific prior written permission.
37
 *
38
 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
39
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
40
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
41
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
42
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
43
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
44
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
45
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
46
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
47
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
48
 * SUCH DAMAGE.
49
 */
50
 
51
#ifndef _NETKEY_KEY_VAR_H_
52
#define _NETKEY_KEY_VAR_H_
53
 
54
 
55
/* sysctl */
56
#define KEYCTL_DEBUG_LEVEL              1
57
#define KEYCTL_SPI_TRY                  2
58
#define KEYCTL_SPI_MIN_VALUE            3
59
#define KEYCTL_SPI_MAX_VALUE            4
60
#define KEYCTL_RANDOM_INT               5
61
#define KEYCTL_LARVAL_LIFETIME          6
62
#define KEYCTL_BLOCKACQ_COUNT           7
63
#define KEYCTL_BLOCKACQ_LIFETIME        8
64
#define KEYCTL_ESP_KEYMIN               9
65
#define KEYCTL_ESP_AUTH                 10
66
#define KEYCTL_AH_KEYMIN                11
67
#define KEYCTL_PREFERED_OLDSA           12
68
#define KEYCTL_MAXID                    13
69
 
70
#define KEYCTL_NAMES { \
71
        { 0, 0 }, \
72
        { "debug", CTLTYPE_INT }, \
73
        { "spi_try", CTLTYPE_INT }, \
74
        { "spi_min_value", CTLTYPE_INT }, \
75
        { "spi_max_value", CTLTYPE_INT }, \
76
        { "random_int", CTLTYPE_INT }, \
77
        { "larval_lifetime", CTLTYPE_INT }, \
78
        { "blockacq_count", CTLTYPE_INT }, \
79
        { "blockacq_lifetime", CTLTYPE_INT }, \
80
        { "esp_keymin", CTLTYPE_INT }, \
81
        { "esp_auth", CTLTYPE_INT }, \
82
        { "ah_keymin", CTLTYPE_INT }, \
83
        { "preferred_oldsa", CTLTYPE_INT }, \
84
}
85
 
86
#ifdef __bsdi__
87
#define KEYCTL_VARS { \
88
        0, \
89
        0, \
90
        &key_spi_trycnt, \
91
        &key_spi_minval, \
92
        &key_spi_maxval, \
93
        &key_int_random, \
94
        &key_larval_lifetime, \
95
        &key_blockacq_count, \
96
        &key_blockacq_lifetime, \
97
        &ipsec_esp_keymin, \
98
        &ipsec_esp_auth, \
99
        &ipsec_ah_keymin, \
100
        &key_preferred_oldsa, \
101
}
102
#endif
103
 
104
#ifdef _KERNEL
105
#define _ARRAYLEN(p) (sizeof(p)/sizeof(p[0]))
106
#define _KEYLEN(key) ((u_int)((key)->sadb_key_bits >> 3))
107
#define _KEYBITS(key) ((u_int)((key)->sadb_key_bits))
108
#define _KEYBUF(key) ((caddr_t)((caddr_t)(key) + sizeof(struct sadb_key)))
109
#endif /*_KERNEL*/
110
 
111
#endif /* _NETKEY_KEY_VAR_H_ */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.