다중 사용자 서버(Multi-user Server) : 불특정 다수의 클라이언트로부터 서비스 요청을 처리 - 반복 처리 서버(Iterative Server) - 동시 처리 서버(Concurrent Server) > 반복 처리 서버 - 간단하여 개발하기 쉽고 이해하기 쉬움 - 사용자가 많아질 경우 클라이언트가 서비스를 위해 대기할 수 있는 시간이 길어질 수 있음 > 동시 처리 서버 - 다수의 클라이언트로부터의 서비스 요청을 동시에 처리, 공정한 서비스 제공 다중 프로세스 기반의 동시 처리 서버 모델 - 다수 클라이언트의 요청을 처리하기 위해 LINUX환경에서 독립적인 작업 단위이자 시간 공유 기법으로 CPU에 의해 동시에 처리되는 다수의 프로세스를 활용 - 즉, 서버는 클라이언트로부터의 연결 설정 요청을 ..
PHP언어에서 number_format 함수에 대해서 알아보자 PHP를 이용해서 개발을 할 때 숫자 형식을 지정하기 위해서는 number_format 함수를 이용하는데요. 개발을 정신없이 하다보면 이 number_format 함수를 어떻게 설정해서 써야 하는지 잊어버릴 때가 있더라구요. 그래서 오늘은 이 number_format 함수에 대해서 포스팅해 보도록 하겠습니다. 이 number_format함수에 대해서 찾아보니 아래와 같이 나와 있더라구요. '천단위로 끊어 서식을 만듭니다.' Format a number with grouped thousands * 기본적인 함수 사용 string number_format ( float $number [, int $decimals ] ) string number_..
PHP (Hypertext Preprocessor)를 시작해볼까요? PHP는 무엇일까요? PHP는 Hypertext Preprocessor의 약자입니다. 1. PHP는 무엇일까요? PHP는 1994년 Rasmus Lerdorf의 개인 프로젝트에 의해 시작되었는데, 이를 6명의 개발자가 다시 작성한 것이 PHP 3.0입니다. PHP3은 1998년 6월에 나왔으며, 빠르고 배포되면서 많은 웹사이트에 사용되고 있습니다. PHP는 자바나 C, Perl을 합쳐 놓은 듯한 형태를 띠고 있습니다. 문법은 C와 비슷하지만, 쉽게 만들 수 있고 배울 수 있어서 초보자가 시작하기에 좋은 프로그래밍 언어라고 할 수 있겠습니다. PHP를 사용할 때의 장점 2. PHP를 사용하면 무엇이 좋을까요? - 거의 모든 운영체제를 지..
open() 함수는 새 브라우저 창을 여는 기능을 합니다. The open() method opens a new browser window. 기본적인 사용 방법 window.open(URL,name,specs,replace) Parameter Description URL Optional. Specifies the URL of the page to open. If no URL is specified, a new window with about:blank is opened name Optional. Specifies the target attribute or the name of the window. The following values are supported: _blank - URL is loaded i..
getbyhostaddr() 함수 예제 소스 예제 소스를 첨부합니다. /* getbyhostaddr.c */ #include #include #include #include #include int main(int argc, char **argv) { struct hostent *hptr; struct sockaddr_in addr ; int i=0; if ( argc != 2 ) { printf("Type and \n") ; exit(1); } memset ( &addr, 0, sizeof(addr) ) ; addr.sin_addr.s_addr = inet_addr(argv[1]) ; hptr = gethostbyaddr( (char*)&addr.sin_addr , 4 , AF_INET); if ( !h..
/* fork_test2.c */ #include #include #include int main(int argc, char **argv) { pid_t pid; int data=10; /* fork() */ pid=fork(); /* fork() 실패 */ if(pid == -1) printf("fork 실패, 프로세스 id : %d \n", pid); printf("fork 성공, 프로세스 id : %d \n", pid); /* 자식 프로세스인 경우 */ if(pid == 0) { printf("child process "); data+=10; } /* 부모 프로세스인 경우 */ else { printf("parent process "); data-=10; } printf("data : %d \n\n..
strcmp(), stricmp() 함수 > strcmp(), stricmp() Functionint strcmp( const char * string1, const char *string2 );int stricmp( const char * string1, const char *string2 ); string1 : NULL로 끝나는 비교할 문자열의 포인터string2 : NULL로 끝나는 비교할 문자열의 포인터 반환값 : -1 : string1 문자열이 string2 문자열보다 작은() 경우 strncmp(), strnicmp() 함수 > strncmp(), strnicmp() Function int strncmp( const char * string1, const char *string2, size_t..
/* fork_test.c */ #include #include #include #include int glob = 6 ; char buf[] = "a write to stdout\n" ; int main(void) { int var ; pid_t pid ; var = 88 ; if ( write (1, buf, sizeof(buf)-1) != sizeof(buf) -1 ) { printf("write error\n"); return -1; } printf("before fork\n"); if ( ( pid=fork()) < 0 ) { printf("fork error\n") ; return -1 ; } // 자식 프로세스인 경우 else if ( pid == 0 ) { glob++; var++; pri..
/* echo_multi_server.c */ #include #include #include #include #include #include #include #include #include #define BUFSIZE 30 void error_handling(char *message); void z_handler(int sig); int main(int argc, char **argv) { int serv_sock; // server socket descriptor int conn_sock; // server connection socket descriptor struct sockaddr_in serv_addr; struct sockaddr_in conn_addr; struct sigaction act..
C언어 문자열 함수 - strcat(), strncat() C언어로 문자열을 연결하기 위해 strcat(), strncat()함수가 쓰입니다. strcat() 함수 사용시 주의사항 1. 문자열이 연결될 버퍼는 반드시 NULL로 종료되어야 합니다. strcat()함수는 문자열을 끝을 찾아 그 부분부터 다음 문자열을 연결해 주는 함수이기 때문입니다. NULL로 종료되지 않은 버퍼를 이용하면 다운될 가능성 100%입니다.2. 문자열이 연결된 후 원래 크기를 초과하면 안됩니다.3. 초기화가 되지 않은 포인터에 사용하면 안됩니다. strcat, strncat 함수 원형 char *strcat(char *dest, const char *src);char *strncat(char *dest, const char *s..
getsockopt() 예제 /* buffer_check.c */ #include #include #include int main() { int tcp_sock, udp_sock ; int snd_buf, rcv_buf ; socklen_t len ; tcp_sock = socket(PF_INET, SOCK_STREAM, 0) ; udp_sock = socket(PF_INET, SOCK_DGRAM, 0) ; if ( getsockopt ( tcp_sock, SOL_SOCKET, SO_SNDBUF, &snd_buf, &len)) { printf("getsockopt() error!\n") ; exit(1) ; } if ( getsockopt ( tcp_sock, SOL_SOCKET, SO_RCVBUF, &..
/* hello_world_server.c */ /* 아래 소스는 클라이언트로부터 연결 요청이 들어오면 이를 수락하여 서버 연결 소켓을 생성하고 클라이언트 소켓으로 Hello World 메시지를 보내고 연결을 종료하는 소스 */ #include #include #include #include #include #include #include void error_msg(char *message) ; int main(int argc, char ** argv) { int serv_sock ; int conn_sock ; struct sockaddr_in serv_addr ; struct sockaddr_in conn_addr ; int addr_len ; char message[] = "Hello World\n..
#include #include #include #include int main(int argc, char **argv) { struct hostent *hptr; char **aptr ; int i=0; hptr = gethostbyname(argv[1]); if ( argc != 2 ) { printf("Type and \n") ; exit(1); } if ( hptr == NULL ) { printf("gethostbyname() error!\n") ; } printf("Official Host Name : %s\n", hptr->h_name ) ; for ( i = 0 ; hptr->h_aliases[i] != NULL ; i++) printf("Alias Host Name : %s\n", hpt..
N e t w o r k P r o g r a m m i n g 파일/소켓 디스크립터(file/socket descriptor) 생성 예제 /* creat_socket.c */ #include #include #include #include #include #include int main() { int fd1, fd2, tcp_socket, udp_socket ; fd1 = open("test_file1", O_RDWR | O_CREAT, 0); tcp_socket = socket ( PF_INET, SOCK_STREAM, 0); fd2 = open("test_file2", O_RDWR | O_CREAT, 0); udp_socket = socket ( PF_INET, SOCK_DGRAM, 0); // p..
- Total
- Today
- Yesterday
- W3Schools Online Web Tutorials
- 구차니의 잡동사니 모음
- [IT]블로거팁닷컴
- 비앤아이님의 블로그
- Blog Suspect
- 즐거운하루 blog
- zinicap의 검색엔진 마케팅(SEM)
- 머니야머니야님의 블로그
- [Friend] AtinStory
- [기타배우기]해브원 박스
- [웹표준] SINDB.com
- 해커 C 이야기
- [애드센스] 길라잡이
- 정순봉의 IT SCHOOL
- 씨디맨의 컴퓨터이야기
- 2proo Life Story
- 못된준코의 세상리뷰
- [IT강좌] 정보문화사
- IN 대전
- 에우르트는 나쁜남자 -_-
- 씬의 싱크탱크
- 엔돌슨의 IT이야기
- 진이늘이
- 'Cooltime'의 블로그
- 후이의 Tistory
- Soulstorage
- 앤드&엔드의 블로그
- June Blog
- 노지의 소박한 이야기
- gbWorld
- 인터넷 속 나의 생각
- HarshNix
- ART of WEB
- 녹두장군 - 상상을 현실로
- 소스
- MBTI
- 안드로이드 어플
- 인터넷
- 리뷰
- C언어
- 인터넷 익스플로러
- 프로그래밍 문제
- php
- C언어 소스
- 소스코드
- JavaScript
- HTML
- 안드로이드 어플 추천
- C
- It
- MBTI 강좌
- 스마트폰
- 예제 소스
- 프로그래밍
- MBTI 검사
- 강좌
- 성공
- 효과음
- 안드로이드
- MBTI 자료
- 강의
- C언어 문제
- MBTI 테스트
- 모토로이
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |