⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 netmsg.c

📁 SIP(Session Initiation Protocol)是由IETF定义
💻 C
字号:
/* * 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 ("\015\012",(size_t) 1,(size_t) 2,f) == 2)) {	*size += i + 2;		/* tally up size of data */				/* note header position */	if (!i && hsiz && !*hsiz) *hsiz = *size;      }      else {	sprintf (tmp,"Error writing scratch file at byte %lu",*size);	mm_log (tmp,ERROR);	fclose (f);		/* forget it */	f = NIL;		/* failure now */      }    }    fs_give ((void **) &s);	/* free the line */  }				/* if making a file, rewind to start of file */  if (f) fseek (f,(unsigned long) 0,L_SET);				/* header consumes entire message */  if (hsiz && !*hsiz) *hsiz = *size;  return f;			/* return the file descriptor */}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -