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

网络编程

开发平台:

Unix_Linux

  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.  * Copyright (c) 1997 by Qualcomm Incorporated.
  8.  */
  9. #include <config.h>
  10. #include <stdio.h>
  11. #include <sys/types.h>
  12. #include "popper.h"
  13. /* 
  14.  *  list:   List the contents of a POP maildrop
  15.  */
  16. int pop_list (p)
  17. POP     *   p;
  18. {
  19.     MsgInfoList         *   mp;         /*  Pointer to message info list */
  20.     register int            i;
  21.     register int            msg_num;
  22.     /*  Was a message number provided? */
  23.     if (p->parm_count > 0) {
  24.         msg_num = atoi(p->pop_parm[1]);
  25.         /*  Is requested message out of range? */
  26.         if ((msg_num < 1) || (msg_num > p->msg_count))
  27.             return (pop_msg (p,POP_FAILURE,
  28.                 "Message %d does not exist.",msg_num));
  29.         /*  Get a pointer to the message in the message list */
  30.         mp = &p->mlp[msg_num-1];
  31.         /*  Is the message already flagged for deletion? */
  32.         if (mp->del_flag)
  33.             return (pop_msg (p,POP_FAILURE,
  34.                 "Message %d has been deleted.",msg_num));
  35.         /*  Display message information */
  36.         return (pop_msg(p,POP_SUCCESS,"%u %u",msg_num,mp->length));
  37.     }
  38.     
  39.     /*  Display the entire list of messages */
  40.     pop_msg(p,POP_SUCCESS,
  41.         "%u messages (%u octets)",
  42.             p->msg_count-p->msgs_deleted,p->drop_size-p->bytes_deleted);
  43.     /*  Loop through the message information list.  Skip deleted messages */
  44.     for (i = p->msg_count, mp = p->mlp; i > 0; i--, mp++) {
  45.         if (!mp->del_flag) 
  46.             (void)fprintf(p->output,"%u %urn",mp->number,mp->length);
  47.     }
  48.     /*  "." signals the end of a multi-line transmission */
  49.     (void)fprintf(p->output,".rn");
  50.     (void)fflush(p->output);
  51.     return(POP_SUCCESS);
  52. }