home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Mail / qpopper-2.4-MIHS / pop_xtnd.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-09-11  |  909 b   |  40 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.  
  13. #include <stdio.h>
  14. #include <sys/types.h>
  15. #include "popper.h"
  16.  
  17. /* 
  18.  *  xtnd:   Handle extensions to the POP protocol suite
  19.  */
  20.  
  21. extern  xtnd_table  *   pop_get_subcommand();
  22.  
  23. int pop_xtnd (p)
  24. POP     *   p;
  25. {
  26.     xtnd_table  *   x;
  27.  
  28.     /*  Convert the XTND subcommand to lower case */
  29.     pop_lower(p->pop_subcommand);
  30.  
  31.     /*  Search for the subcommand in the XTND command table */
  32.     if ((x = pop_get_subcommand(p)) == NULL) return(POP_FAILURE);
  33.  
  34.     /*  Call the function associated with this subcommand */
  35.     if (x->function) return((*x->function)(p));
  36.  
  37.     /*  Otherwise assume NOOP */
  38.     return (pop_msg(p,POP_SUCCESS,NULL));
  39. }
  40.