network.c
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:2k
源码类别:

网络

开发平台:

Unix_Linux

  1. /*
  2.  * Network library.
  3.  * Copyright (C) 1997 Kunihiro Ishiguro
  4.  *
  5.  * This file is part of GNU Zebra.
  6.  *
  7.  * GNU Zebra is free software; you can redistribute it and/or modify it
  8.  * under the terms of the GNU General Public License as published by the
  9.  * Free Software Foundation; either version 2, or (at your option) any
  10.  * later version.
  11.  *
  12.  * GNU Zebra is distributed in the hope that it will be useful, but
  13.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15.  * General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with GNU Zebra; see the file COPYING.  If not, write to the Free
  19.  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  20.  * 02111-1307, USA.  
  21.  */
  22. #include <zebra.h>
  23. /* Read nbytes from fd and store into ptr. */
  24. int
  25. readn (int fd, char *ptr, int nbytes)
  26. {
  27.   int nleft;
  28.   int nread;
  29.   nleft = nbytes;
  30.   while (nleft > 0) 
  31.     {
  32.       nread = read (fd, ptr, nleft);
  33.       if (nread < 0) 
  34. return (nread);
  35.       else
  36. if (nread == 0) 
  37.   break;
  38.       nleft -= nread;
  39.       ptr += nread;
  40.     }
  41.   return nbytes - nleft;
  42. }  
  43. /* Write nbytes from ptr to fd. */
  44. int
  45. writen(int fd, char *ptr, int nbytes)
  46. {
  47.   int nleft;
  48.   int nwritten;
  49.   nleft = nbytes;
  50.   while (nleft > 0) 
  51.     {
  52.       nwritten = write(fd, ptr, nleft);
  53.       
  54.       if (nwritten <= 0) 
  55. return (nwritten);
  56.       nleft -= nwritten;
  57.       ptr += nwritten;
  58.     }
  59.   return nbytes - nleft;
  60. }