pop_auth.c
上传用户:dayuan858
上传日期:2007-01-04
资源大小:194k
文件大小:0k
源码类别:

网络编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (c) 1997 by Qualcomm Incorporated.
  3.  */
  4. #ifdef HAVE_CONFIG_H
  5. #include <config.h>
  6. #endif
  7. #include <stdio.h>
  8. #if HAVE_FCNTL_H
  9. # include <fcntl.h>
  10. #endif
  11. #if HAVE_SYS_FILE_H
  12. # include <sys/file.h>
  13. #endif
  14. #include <popper.h>
  15. /* 
  16.  *  auth  : optional command ; Not supported.
  17.  */
  18. int pop_auth (p)
  19. POP     *   p;
  20. {
  21.     /*  Tell the user that this command is not supported */
  22.     return (pop_msg(p,POP_FAILURE,"This command is not supported yet"));
  23. }