Deleted Added
sdiff udiff text old ( 43662 ) new ( 52709 )
full compact
1/*-
2 * Copyright 1998 Juniper Networks, Inc.
3 * All rights reserved.
4 *
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 unchanged lines hidden (view full) ---

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.
25 *
26 * $FreeBSD: head/lib/libradius/radlib_private.h 52709 1999-10-31 04:47:59Z jdp $
27 */
28
29#ifndef RADLIB_PRIVATE_H
30#define RADLIB_PRIVATE_H
31
32#include <sys/types.h>
33#include <netinet/in.h>
34
35#include "radlib.h"
36
37/* Handle types */
38#define RADIUS_AUTH 0 /* RADIUS authentication, default */
39#define RADIUS_ACCT 1 /* RADIUS accounting */
40
41/* Defaults */
42#define MAXTRIES 3
43#define PATH_RADIUS_CONF "/etc/radius.conf"
44#define RADIUS_PORT 1812
45#define RADACCT_PORT 1813
46#define TIMEOUT 3 /* In seconds */
47
48/* Limits */
49#define ERRSIZE 128 /* Maximum error message length */
50#define MAXCONFLINE 1024 /* Maximum config file line length */
51#define MAXSERVERS 10 /* Maximum number of servers to try */
52#define MSGSIZE 4096 /* Maximum RADIUS message */
53#define PASSSIZE 128 /* Maximum significant password chars */

--- 27 unchanged lines hidden (view full) ---

81 int pass_pos; /* Position of scrambled password */
82 char chap_pass; /* Have we got a CHAP_PASSWORD ? */
83 unsigned char response[MSGSIZE]; /* Response received */
84 int resp_len; /* Length of response */
85 int resp_pos; /* Current position scanning attrs */
86 int total_tries; /* How many requests we'll send */
87 int try; /* How many requests we've sent */
88 int srv; /* Server number we did last */
89 int type; /* Handle type */
90};
91
92#endif