netmsg.c
上传用户:ycwykj01
上传日期:2007-01-04
资源大小:1819k
文件大小:3k
- /*
- * Program: Network message (SMTP/NNTP/POP2/POP3) routines
- *
- * Author: Mark Crispin
- * Networks and Distributed Computing
- * Computing & Communications
- * University of Washington
- * Administration Building, AG-44
- * Seattle, WA 98195
- * Internet: MRC@CAC.Washington.EDU
- *
- * Date: 8 June 1995
- * Last Edited: 4 September 1999
- *
- * Copyright 1999 by the University of Washington
- *
- * Permission to use, copy, modify, and distribute this software and its
- * documentation for any purpose and without fee is hereby granted, provided
- * that the above copyright notice appears in all copies and that both the
- * above copyright notice and this permission notice appear in supporting
- * documentation, and that the name of the University of Washington not be
- * used in advertising or publicity pertaining to distribution of the software
- * without specific, written prior permission. This software is made
- * available "as is", and
- * THE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,
- * WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND IN
- * NO EVENT SHALL THE UNIVERSITY OF WASHINGTON BE LIABLE FOR ANY SPECIAL,
- * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
- * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, TORT
- * (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF OR IN CONNECTION
- * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- *
- */
- #include <stdio.h>
- #include <errno.h>
- extern int errno; /* just in case */
- #include "mail.h"
- #include "osdep.h"
- #include "misc.h"
- #include "netmsg.h"
- #include "flstring.h"
- /* Network message read
- * Accepts: file
- * number of bytes to read
- * buffer address
- * Returns: T if success, NIL otherwise
- */
- long netmsg_read (void *stream,unsigned long count,char *buffer)
- {
- return (fread (buffer,(size_t) 1,(size_t) count,(FILE *) stream) == count) ?
- T : NIL;
- }
- /* Slurp dot-terminated text from NET
- * Accepts: NET stream
- * place to return size
- * place to return header size
- * Returns: file descriptor
- */
- FILE *netmsg_slurp (NETSTREAM *stream,unsigned long *size,unsigned long *hsiz)
- {
- unsigned long i;
- char *s,*t,tmp[MAILTMPLEN];
- FILE *f = tmpfile ();
- if (!f) {
- sprintf (tmp,"Unable to create scratch file: %.80s",strerror (errno));
- mm_log (tmp,ERROR);
- }
- *size = 0; /* initially emtpy */
- if (hsiz) *hsiz = 0;
- while (s = net_getline (stream)) {
- if (*s == '.') { /* possible end of text? */
- if (s[1]) t = s + 1; /* pointer to true start of line */
- else {
- fs_give ((void **) &s); /* free the line */
- break; /* end of data */
- }
- }
- else t = s; /* want the entire line */
- if (f) { /* copy it to the file */
- i = strlen (t); /* size of line */
- if ((fwrite (t,(size_t) 1,(size_t) i,f) == i) &&
- (fwrite ("