home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Mail / qpopper-2.4-MIHS / pop_quit.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-09-11  |  668 b   |  33 lines

  1. /*
  2.  * Copyright (c) 1989 Regents of the University of California.
  3.  * All rights reserved.  The Berkeley software License Agreement
  4.  * specifies the terms and conditions for redistribution.
  5.  */
  6.  
  7. /*
  8.  * Copyright (c) 1997 by Qualcomm Incorporated.
  9.  */
  10.  
  11. #include <config.h>
  12. #include <stdio.h>
  13. #include <sys/types.h>
  14. #include "popper.h"
  15.  
  16. /* 
  17.  *  quit:   Terminate a POP session
  18.  */
  19.  
  20. int pop_quit (p)
  21. POP     *   p;
  22. {
  23.     /*  Release the message information list */
  24.     if (p->mlp) free ((char *)p->mlp);
  25.  
  26.     if (p->CurrentState == auth2) {
  27.     pop_log(p, POP_SUCCESS, "Possible probe of account %s from host %s",
  28.                             p->user, p->client);
  29.     }
  30.  
  31.     return(POP_SUCCESS);
  32. }
  33.