Views 7152 Votes 0 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
#define MAXSIZE 65535
#define CRLF "\n"

#include <string.h>
#include <stdio.h>
#include <unistd.h>

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

const char *getline(int sockfd){
        static char buf[MAXSIZE + 1] = "";
        static char *pbuf = buf;

        int i;
        ssize_t len;

        char *retptr;
        char *crlf;

        do{
                /* 개행문자 찾으면 */
                if(crlf = strstr(pbuf, CRLF)){
                        retptr = pbuf;

                        pbuf = crlf + strlen(CRLF);
                        *crlf = '\0';

                        return retptr;
                }
                
                /* 못 찾았으면 */
                len = strlen(pbuf);
                for(i = 0; i < len; i++) buf[i] = pbuf[i];
                pbuf = buf;
        }while(read(sockfd, buf + len, MAXSIZE - len) > 0);
        /* 데이터 읽고 다시 개행문자 있는지 검사하러 올라가자 */

        return NULL; // 에러 또는 EOF
}

int main(){
        const char *line;

        int fd;
        fd = open("test.c", O_RDONLY);

        while(line = getline(fd))
                printf("LINE : '%s'\n", line);

        close(fd);

        return 0;
}

?

List of Articles
No. Category Subject Author Date Views
389 System/OS [linux] ipchains 사용예(패킷 필터링) hooni 2003.04.23 14179
388 System/OS [linux] ipchains 옵션 hooni 2003.04.23 13619
387 System/OS [linux] ipfwadm를 이용한 패킷필터링(구버전) hooni 2003.04.23 13023
386 System/OS [linux] iptables 명령어 매뉴얼(options) hooni 2003.04.23 11342
385 System/OS [linux] iptables 초간단 세팅 스크립트 hooni 2017.09.26 1243
384 System/OS [linux] man 명령어 뽀개기.. hooni 2003.04.23 8723
383 System/OS [linux] Masquerade 가상 ip분할기법 hooni 2003.04.23 47939
382 System/OS [linux] Oracle8.1.6, Mysql+PHP+Zend Optimizer+APACHE+Tomcat(jsp,servlet)+IMAP+gd hooni 2003.04.23 32460
381 System/OS [linux] Proftpd 설치 가이드 hooni 2003.04.23 13028
380 System/OS [linux] ProFTPD 타임아웃 설정 hooni 2003.04.23 12851
379 System/OS [linux] resolv.con 초기화 되는 문제 hooni 2014.04.05 4624
378 System/OS [linux] root 전환시 패스워드 없이 su 사용하기 hooni 2013.12.22 12688
377 System/OS [linux] root도 삭제하지 못하는 파일 속성 hooni 2003.04.23 12412
376 System/OS [linux] sendmail 설정/사용 hooni 2003.04.23 14574
375 System/OS [linux] split 명령어 hooni 2014.03.11 4307
374 System/OS [linux] SSH에 대한 기본 설명과 설치/설정 hooni 2013.04.23 10499
Board Pagination Prev 1 ... 48 49 50 51 52 ... 74 Next
/ 74