Date: Tue, 06 Sep 2005 19:54:56 +0400 From: Sergey Uvarov <uvarovsl@mail.pnpi.spb.ru> To: erkan kolemen <erkankolemen@yahoo.com> Cc: freebsd-hackers@freebsd.org Subject: Re: accept: Invalid argument Message-ID: <431DBBD0.5070302@mail.pnpi.spb.ru> In-Reply-To: <20050906153451.86233.qmail@web33406.mail.mud.yahoo.com> References: <20050906153451.86233.qmail@web33406.mail.mud.yahoo.com>
next in thread | previous in thread | raw e-mail | index | archive | help
Did you issue listen(2) call before accepting connections? Sergey. erkan kolemen wrote: > Hi, > > In a daemon loop, i am using accept() to accept > incoming connections. > > while(1) { > if((fd = accept(socketd, (struct sockaddr *) &addr, > &addrlen)) == -1) { > syslog(LOG_ERR, "accept: %s", strerror(errno)); > continue; > } > else { > ... > } > > accept always fails. What is wrong? i could create > socket and i got a positive integer value as socket > descriptor. following is from syslog: > > Sep 6 17:20:50 devel pro[99227]: accept: Invalid > argument > Sep 6 17:21:20 devel last message repeated 204686 > times > > What is wrong? i am calling accept before fork().. So > i don't think child process affecting parent process. > > thanks and regards... > > - erkan > > > > > ______________________________________________________ > Click here to donate to the Hurricane Katrina relief effort. > http://store.yahoo.com/redcross-donate3/ > _______________________________________________ > freebsd-hackers@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-hackers > To unsubscribe, send any mail to "freebsd-hackers-unsubscribe@freebsd.org"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?431DBBD0.5070302>