웹서버 예제를 풀다가 발생하는 bind 에러

radayer의 이미지


#include <stdio.h>
#include <string.h>
 
#ifndef __linux__ /*for Windows*/
	#include <winsock2.h>
	#include <windows.h>
	#define perror(msg) winperror(msg)
 
	void winperror(char * msg);
 
#else   /* for Linux*/
	#include <unistd.h>
	#include <sys/types.h>
	#include <sys/socket.h>
	#include <netinet/in.h>
	#include <arpa/inet.h>
 
#endif
 
#define PORT 8080
 
 
int main(int argc, char **argv)
{
	int sock, client_sock;
 
	struct sockaddr_in addr, client_addr;
	char buffer[1024];
	int len, addr_len, recv_len;
 
 
	const char * http_response = /* 웹 서버의 리퀘스트(응답)*/
		"HTTP/1.1 200 OK\r\n"
		"Content-Type:text/html\r\n\r\n"
		"<html><body>\r\n"
		"<h1>Hello World!!</h1>\r\n"
		"</body></html>";
 
#ifndef __linux__/*for Windows*/
	WSADATA wsaData;
	WSAStartup(MAKEWORD(2,2),&wsaData);
#endif
 
	if((sock = socket(AF_INET,SOCK_STREAM,0))<0){
		perror("sock");
		return 1;
	}
 
	memset(&addr,0x00,sizeof(addr));
	addr.sin_family = AF_INET;
	addr.sin_addr.s_addr=htonl(0xc0a8001b);
	addr.sin_port = htons(PORT);
 
 
	if(bind(sock,(struct sockaddr *)&addr,sizeof(addr))<0)
	{
		perror("bind");
		return 1;
	}
 
	if(listen(sock,5)<0){
		perror("listen");
		return 1;
	}
 
	addr_len= sizeof(client_addr);
 
	printf("waiting for client\n");
 
	while((client_sock = accept(sock,(struct sockaddr *)&client_addr, &addr_len))<0){
 
		printf("client ip : %s \n", inet_ntoa(client_addr.sin_addr));
 
		if((recv_len = recv(client_sock,buffer,1024,0))<0){
			perror("recv");
			break;
		}
 
		buffer[recv_len] ='\0';
 
		send(client_sock,http_response,strlen(http_response),0);
 
		printf("%s\n",http_response);
 
#ifndef __linux__
	closesocket(client_sock);
#else
	close(client_sock);
#endif
 
	}
 
#ifndef __linux__
	closesocket(sock);
	WSACleanup();
#else
	close(sock);
#endif
 
	return 0;
}
 
 
#ifndef __linux__
void winperror(char *msg)
{
	LPVOID lpMsgBuf;
	FormatMessage(
		FORMAT_MESSAGE_ALLOCATE_BUFFER|FORMAT_MESSAGE_FROM_SYSTEM,
		NULL,WSAGetLastError(),
		MAKELANGID(LANG__NEUTRAL,SUBLANG_DEFAULT),
		(LPTSTR)&lpMsgBuf,0,NULL);
 
	printf("%s :\s\n",msg,lpMsgBuf);
 
	LocalFree(lpMsgBuf);
}
#endif

-> 실행 결과는 bind: Address already in use
그리고 setsockopt 도 사용했봤는데 bind에러도 안뜨고 접속하자마자 바로 서버가 꺼집니다. 물론 브라우저에서도 접속이 안되고요... 살려주세요... 방화벽도 풀었습니다.

모지리의 이미지

man setsockopt
SO_REUSEADDR

뭔가 숙제 냄새가 나기도 하고..... ^^

모지리의 이미지

man setsockopt

SO_REUSEADDR

뭔가 숙제 냄새가 나기도 하고..... ^^

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.