rfc2045_fromfd.c
上传用户:s81996212
上传日期:2007-01-04
资源大小:722k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. /*
  2. ** Copyright 1998 - 1999 Double Precision, Inc.  See COPYING for
  3. ** distribution information.
  4. */
  5. /*
  6. ** $Id: rfc2045_fromfd.c,v 1.4 1999/12/15 22:27:57 mrsam Exp $
  7. */
  8. #if HAVE_CONFIG_H
  9. #include "config.h"
  10. #endif
  11. #include <sys/types.h>
  12. #include "rfc2045.h"
  13. #if HAVE_UNISTD_H
  14. #include <unistd.h>
  15. #endif
  16. /* Convert a message to the RFC2045 structure */
  17. struct rfc2045 *rfc2045_fromfd(int fd)
  18. {
  19. struct rfc2045 *rfc;
  20. char buf[BUFSIZ];
  21. int n;
  22. off_t orig_pos;
  23. if ((orig_pos=lseek(fd, 0L, SEEK_CUR)) == (off_t)-1) return (NULL);
  24. if (lseek(fd, (off_t)0, SEEK_SET) == (off_t)-1) return (NULL);
  25. if ((rfc=rfc2045_alloc()) == 0) return (NULL);
  26. while ((n=read(fd, buf, sizeof(buf))) > 0)
  27. rfc2045_parse(rfc, buf, n);
  28. if (lseek(fd, orig_pos, SEEK_SET) == (off_t)-1)
  29. {
  30. rfc2045_free(rfc);
  31. rfc=0;
  32. }
  33. return (rfc);
  34. }