-readn function implementation of Linux network programming

Source: Internet
Author: User

Readn function function: In the network programming reading data, usually will need to use a read the specified byte to return the function, the Linux system call did not give, need to own encapsulation.

READN Implementation code:

intREADN (intFdvoid*vptr, size_t N) {size_t Nleft= N;//the READN function also needs to read the number of bytesssize_t nread =0;//the Read function reads the number of bytesUnsignedChar*ptr = (Char*) vptr;//Pointer to buffer     while(Nleft >0) {nread=Read (FD, PTR, nleft); if(-1==nread) {            if(Eintr = =errno) Nread=0; Else                return-1; }        Else if(0==nread) {             Break; } nleft-=nread; PTR+=nread; }    returnN-Nleft;}

-readn function implementation of Linux network programming

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.