iscontrol(8): Fix synopsis, sync usage() & improve markup
[dragonfly.git] / lib / libradius / radlib_private.h
blob679eebbbaeb9a7f997aaae4177466fb103d25be1
1 /*-
2 * Copyright 1998 Juniper Networks, Inc.
3 * All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
26 * $FreeBSD: src/lib/libradius/radlib_private.h,v 1.4.2.1 2002/06/17 02:24:57 brian Exp $
27 * $DragonFly: src/lib/libradius/radlib_private.h,v 1.2 2003/06/17 04:26:51 dillon Exp $
30 #ifndef RADLIB_PRIVATE_H
31 #define RADLIB_PRIVATE_H
33 #include <sys/types.h>
34 #include <netinet/in.h>
36 #include "radlib.h"
37 #include "radlib_vs.h"
39 /* Handle types */
40 #define RADIUS_AUTH 0 /* RADIUS authentication, default */
41 #define RADIUS_ACCT 1 /* RADIUS accounting */
43 /* Defaults */
44 #define MAXTRIES 3
45 #define PATH_RADIUS_CONF "/etc/radius.conf"
46 #define RADIUS_PORT 1812
47 #define RADACCT_PORT 1813
48 #define TIMEOUT 3 /* In seconds */
50 /* Limits */
51 #define ERRSIZE 128 /* Maximum error message length */
52 #define MAXCONFLINE 1024 /* Maximum config file line length */
53 #define MAXSERVERS 10 /* Maximum number of servers to try */
54 #define MSGSIZE 4096 /* Maximum RADIUS message */
55 #define PASSSIZE 128 /* Maximum significant password chars */
57 /* Positions of fields in RADIUS messages */
58 #define POS_CODE 0 /* Message code */
59 #define POS_IDENT 1 /* Identifier */
60 #define POS_LENGTH 2 /* Message length */
61 #define POS_AUTH 4 /* Authenticator */
62 #define LEN_AUTH 16 /* Length of authenticator */
63 #define POS_ATTRS 20 /* Start of attributes */
65 struct rad_server {
66 struct sockaddr_in addr; /* Address of server */
67 char *secret; /* Shared secret */
68 int timeout; /* Timeout in seconds */
69 int max_tries; /* Number of tries before giving up */
70 int num_tries; /* Number of tries so far */
73 struct rad_handle {
74 int fd; /* Socket file descriptor */
75 struct rad_server servers[MAXSERVERS]; /* Servers to contact */
76 int num_servers; /* Number of valid server entries */
77 int ident; /* Current identifier value */
78 char errmsg[ERRSIZE]; /* Most recent error message */
79 unsigned char request[MSGSIZE]; /* Request to send */
80 int req_len; /* Length of request */
81 char pass[PASSSIZE]; /* Cleartext password */
82 int pass_len; /* Length of cleartext password */
83 int pass_pos; /* Position of scrambled password */
84 char chap_pass; /* Have we got a CHAP_PASSWORD ? */
85 unsigned char response[MSGSIZE]; /* Response received */
86 int resp_len; /* Length of response */
87 int resp_pos; /* Current position scanning attrs */
88 int total_tries; /* How many requests we'll send */
89 int try; /* How many requests we've sent */
90 int srv; /* Server number we did last */
91 int type; /* Handle type */
94 struct vendor_attribute {
95 u_int32_t vendor_value;
96 u_char attrib_type;
97 u_char attrib_len;
98 u_char attrib_data[1];
101 #endif