From owner-svn-src-all@FreeBSD.ORG Thu May 16 05:21:52 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 2F810F95; Thu, 16 May 2013 05:21:52 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-ie0-x232.google.com (mail-ie0-x232.google.com [IPv6:2607:f8b0:4001:c03::232]) by mx1.freebsd.org (Postfix) with ESMTP id DB89BF03; Thu, 16 May 2013 05:21:51 +0000 (UTC) Received: by mail-ie0-f178.google.com with SMTP id b11so5707612iee.9 for ; Wed, 15 May 2013 22:21:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:references:mime-version:in-reply-to:content-type :content-transfer-encoding:message-id:cc:x-mailer:from:subject:date :to; bh=BwZ+jFWS2SCtKOxTrqndaHGl/xyh3oY1Zv+PO5xx9Ws=; b=b6yN0o+BWYUJMrhvKCsqUPOajm6t+IU4Cffsrvcntj5V4e4T8nqtTOkVYIe/5vcFfa 6rsDFIAsQA6ZY+Prf2Kp6Sn9gnR5LJKD3uo0e+shl5C0SAeNqM6NUulct4r8Dt8TEjOR sxhgf3il7Vs2ZvApqil+4brxoebXKLhb/2EJMil+kdEoHLpjLL/BKsSjxCPlCcPGY5HS 7eC4cGbgPe4ub7la29pwTp8CxwXvmoyCCu0KWxjd3w5pGFPw6cnLOl4GWt+ek28t/Udo 5ySohj/mLhYCfInHpzDLqEM7/YnUvb+gWzmgi0d4Dzqrlhhs14U6ud2NGaIlEVISJh5X ohcg== X-Received: by 10.43.169.202 with SMTP id nn10mr21704712icc.4.1368681711630; Wed, 15 May 2013 22:21:51 -0700 (PDT) Received: from [172.24.139.26] ([137.122.64.49]) by mx.google.com with ESMTPSA id w8sm1904558igl.9.2013.05.15.22.21.50 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 15 May 2013 22:21:50 -0700 (PDT) References: <201305160516.r4G5Gvv8076406@svn.freebsd.org> Mime-Version: 1.0 (1.0) In-Reply-To: <201305160516.r4G5Gvv8076406@svn.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Message-Id: <339B2849-9826-4B35-A6BC-9C8382B8A5B1@gmail.com> X-Mailer: iPhone Mail (10B329) From: Garrett Cooper Subject: Re: svn commit: r250693 - head/contrib/libpcap Date: Thu, 16 May 2013 01:21:50 -0400 To: Hiren Panchasara Cc: "svn-src-head@freebsd.org" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 May 2013 05:21:52 -0000 Has this been pushed upstream? Sent from my iPhone On May 16, 2013, at 1:16 AM, Hiren Panchasara wrote: > Author: hiren > Date: Thu May 16 05:16:56 2013 > New Revision: 250693 > URL: http://svnweb.freebsd.org/changeset/base/250693 >=20 > Log: > Add tcp header flags ECE and CWR defined in RFC 3168. >=20 > PR: 140349 > Submitted by: Alan Amesbury (earlier version) > Reviewed by: delphij > Approved by: sbruno (mentor) >=20 > Modified: > head/contrib/libpcap/pcap-filter.manmisc > head/contrib/libpcap/pcap-filter.manmisc.in > head/contrib/libpcap/scanner.l >=20 > Modified: head/contrib/libpcap/pcap-filter.manmisc > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D > --- head/contrib/libpcap/pcap-filter.manmisc Thu May 16 03:51:00 2013 = (r250692) > +++ head/contrib/libpcap/pcap-filter.manmisc Thu May 16 05:16:56 2013 = (r250693) > @@ -783,7 +783,8 @@ The following ICMP type field values are >=20 > The following TCP flags field values are available: \fBtcp-fin\fP, > \fBtcp-syn\fP, \fBtcp-rst\fP, \fBtcp-push\fP, > -\fBtcp-ack\fP, \fBtcp-urg\fP. > +\fBtcp-ack\fP, \fBtcp-urg\fP, \fBtcp-ece\fP, > +\fBtcp-cwr\fP. > .LP > Primitives may be combined using: > .IP >=20 > Modified: head/contrib/libpcap/pcap-filter.manmisc.in > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D > --- head/contrib/libpcap/pcap-filter.manmisc.in Thu May 16 03:51:00 201= 3 (r250692) > +++ head/contrib/libpcap/pcap-filter.manmisc.in Thu May 16 05:16:56 201= 3 (r250693) > @@ -783,7 +783,8 @@ The following ICMP type field values are >=20 > The following TCP flags field values are available: \fBtcp-fin\fP, > \fBtcp-syn\fP, \fBtcp-rst\fP, \fBtcp-push\fP, > -\fBtcp-ack\fP, \fBtcp-urg\fP. > +\fBtcp-ack\fP, \fBtcp-urg\fP, \fBtcp-ece\fP, > +\fBtcp-cwr\fP. > .LP > Primitives may be combined using: > .IP >=20 > Modified: head/contrib/libpcap/scanner.l > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D > --- head/contrib/libpcap/scanner.l Thu May 16 03:51:00 2013 (r250692= ) > +++ head/contrib/libpcap/scanner.l Thu May 16 05:16:56 2013 (r250693= ) > @@ -385,6 +385,8 @@ tcp-rst { yylval.i =3D 0x04; return NUM; > tcp-push { yylval.i =3D 0x08; return NUM; } > tcp-ack { yylval.i =3D 0x10; return NUM; } > tcp-urg { yylval.i =3D 0x20; return NUM; } > +tcp-ece { yylval.i =3D 0x40; return NUM; } > +tcp-cwr { yylval.i =3D 0x80; return NUM; } > [A-Za-z0-9]([-_.A-Za-z0-9]*[.A-Za-z0-9])? { > yylval.s =3D sdup((char *)yytext); return ID; } > "\\"[^ !()\n\t]+ { yylval.s =3D sdup((char *)yytext + 1); return ID; } > _______________________________________________ > svn-src-head@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/svn-src-head > To unsubscribe, send any mail to "svn-src-head-unsubscribe@freebsd.org"