~ubuntu-branches/ubuntu/natty/freeradius/natty-updates

« back to all changes in this revision

Viewing changes to src/modules/rlm_otp/otp_rad.h

  • Committer: Bazaar Package Importer
  • Author(s): Paul Hampson
  • Date: 2006-01-15 13:34:13 UTC
  • mto: (3.1.3 dapper) (4.1.3 sid) (1.1.14 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20060115133413-zo1dslttvdoalqym
Tags: upstream-1.1.0
ImportĀ upstreamĀ versionĀ 1.1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * otp_rad.h
 
3
 * $Id: otp_rad.h,v 1.6.2.2 2005/12/08 02:07:32 fcusack Exp $
 
4
 *
 
5
 *   This program is free software; you can redistribute it and/or modify
 
6
 *   it under the terms of the GNU General Public License as published by
 
7
 *   the Free Software Foundation; either version 2 of the License, or
 
8
 *   (at your option) any later version.
 
9
 *
 
10
 *   This program is distributed in the hope that it will be useful,
 
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 *   GNU General Public License for more details.
 
14
 *
 
15
 *   You should have received a copy of the GNU General Public License
 
16
 *   along with this program; if not, write to the Free Software
 
17
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
 *
 
19
 * Copyright 2001,2002  Google, Inc.
 
20
 * Copyright 2005 TRI-D Systems, Inc.
 
21
 */
 
22
 
 
23
#ifndef OTP_RAD_H
 
24
#define OTP_RAD_H
 
25
 
 
26
#include <autoconf.h>
 
27
#include <radiusd.h>
 
28
#define OTP_LOG_DEBUG L_DBG
 
29
#define OTP_LOG_ERR   L_ERR
 
30
#define OTP_LOG_AUTH  L_AUTH
 
31
#define OTP_LOG_INFO  L_INFO
 
32
#define OTP_LOG_CRIT  (L_ERR|L_CONS)
 
33
 
 
34
/* otp_radstate.c */
 
35
extern int otp_gen_state(char **, unsigned char **,
 
36
                         const unsigned char [OTP_MAX_CHALLENGE_LEN], size_t,
 
37
                         int32_t, int32_t, const unsigned char [16]);
 
38
 
 
39
/* otp_pwe.c */
 
40
#include <libradius.h>   /* VALUE_PAIR */
 
41
struct otp_pwe_cmp_t {
 
42
  const REQUEST         *request;
 
43
  const otp_option_t    *inst;
 
44
  int                   pwattr; /* return value from otp_pwe_present() */
 
45
  VALUE_PAIR            **returned_vps;
 
46
};
 
47
extern void otp_pwe_init(void);
 
48
extern int otp_pwe_present(const REQUEST *, const char *);
 
49
extern int otp_pwe_cmp(struct otp_pwe_cmp_t *, const char *, const char *);
 
50
 
 
51
#endif /* OTP_RAD_H */