소켓에서 바인딩 하는데 에러가

hitman7의 이미지

소스는 아래와 같습니다.
그냥 클라이언트에서 접속만 하고 있습니다. (기본 구조만 테스트 하는중이라서요.)

문제는
1. 서버에서 서버프로그램을 돌립니다.
2. 클라이언트에서 접속을 합니다.
3. 서버 프로그램을 Ctrl-Z 키로 죽입니다.
3-1) 소스를 보시면 알겠지만 Ctrl-z키의 인터럽트를 체크하여 각소켓을 close 하기 때문에 바인드에 문제가 없을것으로 예상되었습니다만.
4. 서버 프로그램을 실행시키면 bind에서 에러가 나타납니다.

에러의 상세내용은
1. bind가 -1을 리턴합니다.
2. strerror가 리턴한 에러코드는 Success입니다. :O

그리고 나서 시간이 지나면 서버프로그램을 돌리는데 문제는 없습니다만, 왠지 꺼림직해서 다른일이 안잡히네요. 명쾌한 설명 부탁드릴수 있을까요?

#include <stdio.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <sys/wait.h>
#include <signal.h>
 
int socket_s,socket_c;
 
void sig_handler(int signum)
{
	close(socket_s);
	close(socket_c);
	exit(0);
}
 
int main(int argc,char** argv)
{
	int portnum=7575;
	int err=0;
	int ret=0;
	char buf[1];
 
	socklen_t  socket_clen;
 
	struct sockaddr_in addr_s,addr_c;
 
	if(signal(SIGTSTP,sig_handler)==SIG_IGN)
	{
		signal(SIGTSTP,SIG_IGN);
	}
 
	socket_clen=sizeof(addr_c);
 
	socket_s=socket(AF_INET,SOCK_STREAM,0);
	if(socket<0)
	{
		printf("error - while create socket\n");
		return 0;
	}
 
	bzero(&addr_s,sizeof(addr_s));
	addr_s.sin_family=AF_INET;
	addr_s.sin_addr.s_addr=htonl(INADDR_ANY);
	addr_s.sin_port=htons(portnum);
 
//	bind(socket_s,(struct sockaddr*)&addr_s,sizeof(addr_s));
 
	if((ret=bind(socket_s,(struct sockaddr*)&addr_s,sizeof(addr_s)))<0)
	{
		printf("bind error!(%d):%s\n",ret,strerror(err));
		return 0;
	}
 
//	listen(socket_s,5);
 
	if(listen(socket_s,5)!=0)
	{
		printf("listen error!(%d):%s\n",err,strerror(err));
		return 0;
	}
 
	while(1)
	{
		socket_c=accept(socket_s,(struct sockaddr*)&addr_c,&socket_clen);
		printf("here comes new challenger!\n");
		scanf("%c",&buf);
		if(buf=="q")
		{
			close(socket_s);
			close(socket_c);
			exit(0);
		}
	}
 
	return 0;
}
hitman7의 이미지

far and hard way

댓글 첨부 파일: 
첨부파일 크기
Plain text icon 0바이트

far and hard way

bugiii의 이미지

SO_REUSEADDR 소켓 옵션에 대해서 책을 참고하시기 바랍니다.

hitman7의 이미지

부탁드린대로 명쾌한 설명이 되었습니다...^^;;
감사합니다.

-------------------------------------------

far and hard way

far and hard way

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.