From owner-freebsd-net@FreeBSD.ORG Thu May 29 08:28:10 2008 Return-Path: Delivered-To: net@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DED31106566C for ; Thu, 29 May 2008 08:28:10 +0000 (UTC) (envelope-from andre@freebsd.org) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.freebsd.org (Postfix) with ESMTP id 7A9F48FC17 for ; Thu, 29 May 2008 08:28:10 +0000 (UTC) (envelope-from andre@freebsd.org) Received: (qmail 75507 invoked from network); 29 May 2008 06:59:15 -0000 Received: from localhost (HELO [127.0.0.1]) ([127.0.0.1]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 29 May 2008 06:59:15 -0000 Message-ID: <483E62D9.8000308@freebsd.org> Date: Thu, 29 May 2008 10:01:29 +0200 From: Andre Oppermann User-Agent: Thunderbird 1.5.0.14 (Windows/20071210) MIME-Version: 1.0 To: Victor Hugo Bilouro References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: net@freebsd.org Subject: Re: establish connection without tcp options X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2008 08:28:11 -0000 Victor Hugo Bilouro wrote: > Hi all, > > I'm working into establish manually a tcp connection. > > Does anyone knows if freebsd 7.0 stable agree, a connection > establishment without TCP options set? Yes, certainly it does. If you send a SYN w/o any options it won't use any. If you establish a connection from FreeBSD you may ignore any options in SYN and in your SYN-ACK not send any. If you want FreeBSD not to send any options you can set the socket option TCP_NOOPT before you do the connect. -- Andre