preauthcram.c
上传用户:s81996212
上传日期:2007-01-04
资源大小:722k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. /*
  2. ** Copyright 1998 - 1999 Double Precision, Inc.  See COPYING for
  3. ** distribution information.
  4. */
  5. static const char rcsid[]="$Id: preauthcram.c,v 1.5 2000/03/01 23:01:36 mrsam Exp $";
  6. #include "auth.h"
  7. extern int auth_userdb_pre_common(const char *userid, const char *service,
  8. int needpass,
  9. int (*callback)(struct authinfo *, void *),
  10.                         void *arg);
  11. int auth_cram_pre(const char *userid, const char *service,
  12.         int (*callback)(struct authinfo *, void *),
  13.                         void *arg)
  14. {
  15. return (auth_userdb_pre_common(userid, service, 0, callback, arg));
  16. }