From owner-freebsd-hackers@FreeBSD.ORG Tue Sep 6 16:01:04 2005 Return-Path: X-Original-To: freebsd-hackers@freebsd.org Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BC8B16A41F for ; Tue, 6 Sep 2005 16:01:04 +0000 (GMT) (envelope-from victor.cruceru@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67F2943D62 for ; Tue, 6 Sep 2005 16:00:59 +0000 (GMT) (envelope-from victor.cruceru@gmail.com) Received: by wproxy.gmail.com with SMTP id i7so1111978wra for ; Tue, 06 Sep 2005 09:00:58 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=oIyZzrEIvZBUmcAD44I4Pi0qsWWTptaNorCsI+jr9GMDrg1WFXAXhSH8FL/DQngYKdMWoEu4gqPU3r5ulGWDL5Fpsy0xQLkCubiY2413s0dgPcn0ZNjvPTMLv0aEcyUSUp3L8Kev9oMDV8nc2nTgAvgw/l7x68SoG1C1VovRwFw= Received: by 10.54.56.55 with SMTP id e55mr4906847wra; Tue, 06 Sep 2005 09:00:57 -0700 (PDT) Received: by 10.54.91.20 with HTTP; Tue, 6 Sep 2005 09:00:57 -0700 (PDT) Message-ID: <494025505090609002221d6d0@mail.gmail.com> Date: Tue, 6 Sep 2005 19:00:57 +0300 From: victor cruceru To: erkan kolemen In-Reply-To: <494025505090608566b1c7bb0@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <20050906153451.86233.qmail@web33406.mail.mud.yahoo.com> <494025505090608566b1c7bb0@mail.gmail.com> Cc: freebsd-hackers@freebsd.org Subject: Re: accept: Invalid argument X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: soc-victor@freebsd.org List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Sep 2005 16:01:04 -0000 Also the 3rd argument for accept must be positive. See man accept. victor cruceru. On 9/6/05, victor cruceru wrote: > Did you call bind() and especially listen() before accept()? > victor cruceru >=20 >=20 > On 9/6/05, erkan kolemen wrote: > > Hi, > > > > In a daemon loop, i am using accept() to accept > > incoming connections. > > > > while(1) { > > if((fd =3D accept(socketd, (struct sockaddr *) &addr, > > &addrlen)) =3D=3D -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.o= rg" > > >