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

« back to all changes in this revision

Viewing changes to src/include/modules.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
1
/*
2
2
 * module.h     Interface to the RADIUS module system.
3
3
 *
4
 
 * Version:     $Id: modules.h,v 1.22 2003/07/04 19:11:07 aland Exp $
 
4
 * Version:     $Id: modules.h,v 1.22.6.1 2005/12/08 13:24:31 nbk Exp $
5
5
 *
6
6
 */
7
7
 
58
58
int module_preacct(REQUEST *request);
59
59
int module_accounting(int type, REQUEST *request);
60
60
int module_checksimul(int type, REQUEST *request, int maxsimul);
61
 
int module_pre_proxy(REQUEST *request);
62
 
int module_post_proxy(REQUEST *request);
 
61
int module_pre_proxy(int type, REQUEST *request);
 
62
int module_post_proxy(int type, REQUEST *request);
63
63
int module_post_auth(int type, REQUEST *request);
64
64
 
65
65
#endif /* RADIUS_MODULES_H */