jhb 2008-09-25 18:38:04 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/netinet in.h ip_icmp.c
Log:
SVN rev 183358 on 2008-09-25 18:38:04Z by jhb
MFC: 178280
- Clean up the code that checks the types of address so that it is
done b
jhb 2008-09-25 18:37:08 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_7)
sys/netinet in.h ip_icmp.c
Log:
SVN rev 183357 on 2008-09-25 18:37:08Z by jhb
MFC: 178280
- Clean up the code that checks the types of address so that it is
done b
gnn 2008-04-17 12:50:43 UTC
FreeBSD src repository
Modified files:
sys/netinet in.h ip_icmp.c
Log:
Clean up the code that checks the types of address so that it is
done by understandable macros.
Fix the bug that prevented the system from responding on interfac
On Tue, Mar 04, 2008 at 07:22:55PM +, Bruce M. Simpson wrote:
> Rui Paulo wrote:
>> Submitted by: Fernando Gont
>> Approved by:njl (mentor)
>> Reviewed by:silby, bms
>>
>
> Disclaimer: I didn't review the code in this change, but just commented
> upon the intent behind it.
Rui Paulo wrote:
Submitted by: Fernando Gont
Approved by:njl (mentor)
Reviewed by:silby, bms
Disclaimer: I didn't review the code in this change, but just commented
upon the intent behind it.
BMS
___
cvs-all@freebsd.org mailing li
rpaulo 2008-03-04 19:16:22 UTC
FreeBSD src repository
Modified files:
sys/netinet in.h in_pcb.c
Log:
Change the default port range for outgoing connections by introducing
IPPORT_EPHEMERALFIRST and IPPORT_EPHEMERALLAST with values
1 and 65535 respectively.
The
bms 2007-02-27 14:45:37 UTC
FreeBSD src repository
Modified files:
sys/netinet in.h
Log:
Add INADDR_ALLRPTS_GROUP define for 224.0.0.22 for future IGMPv3 support.
Obtained from: OpenSolaris
Revision ChangesPath
1.99 +1 -0 src/sys/netinet/i
bms 2007-02-14 13:39:01 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/netinet in.h
Log:
MFC rev 1.98:
Import macros IN_LINKLOCAL(), IN_PRIVATE(), IN_LOCAL_GROUP(),
IN_ANY_LOCAL().
This is not a functional change.
IN_LINKLOCA
bms 2007-01-31 14:34:48 UTC
FreeBSD src repository
Modified files:
sys/netinet in.h
Log:
Import macros IN_LINKLOCAL(), IN_PRIVATE(), IN_LOCAL_GROUP(), IN_ANY_LOCAL().
This is not a functional change.
IN_LINKLOCAL() tests if an address falls within the IPv4 lin
On 7/4/06, Max Laier <[EMAIL PROTECTED]> wrote:
Right, forgot about pfsync. Use this in addition. Again, only compile
tested.
No problem. That did the trick. pfSync is online and operational:
pfsync0: flags=41 mtu 2020
pfsync: syncdev: lo0 syncpeer: 224.0.0.240 maxupd: 128
Thanks!
On Tuesday 04 July 2006 02:50, Scott Ullrich wrote:
> On 6/27/06, Max Laier <[EMAIL PROTECTED]> wrote:
> > See attached, for a possible fix. Untested, so be careful.
>
> Unfortunately this patch does not help. I was able to get a trace
> prior to the patch if that would help:
> http://www.pfsense
kOn Tue, 4 Jul 2006, 02:36-0400, Scott Ullrich wrote:
> On 7/4/06, Maxim Konovalov <[EMAIL PROTECTED]> wrote:
> > How to repeat? Btw allr, lockedvnods etc are not needed there. "bt
> > full" is.
>
> # ifconfig pfsync0
> pfsync0: flags=0<> mtu 2020
>syncpeer: 224.0.0.240 maxupd: 128
> # i
On 7/4/06, Maxim Konovalov <[EMAIL PROTECTED]> wrote:
How to repeat? Btw allr, lockedvnods etc are not needed there. "bt
full" is.
# ifconfig pfsync0
pfsync0: flags=0<> mtu 2020
syncpeer: 224.0.0.240 maxupd: 128
# ifconfig pfsync0 syncdev lo0
Fatal trap 12: page fault while in kernel
On Mon, 3 Jul 2006, 20:50-0400, Scott Ullrich wrote:
> On 6/27/06, Max Laier <[EMAIL PROTECTED]> wrote:
> > See attached, for a possible fix. Untested, so be careful.
>
> Unfortunately this patch does not help. I was able to get a trace
> prior to the patch if that would help:
> http://www.pfsen
On 6/27/06, Max Laier <[EMAIL PROTECTED]> wrote:
See attached, for a possible fix. Untested, so be careful.
Unfortunately this patch does not help. I was able to get a trace
prior to the patch if that would help:
http://www.pfsense.com/~sullrich/panics/pfsync_panic_freebsd_7.txt
Scott
__
On Tuesday 27 June 2006 00:46, Maxim Konovalov wrote:
> Hi Bruce,
>
> On Sun, 14 May 2006, 14:22-, Bruce M Simpson wrote:
> > bms 2006-05-14 14:22:49 UTC
> >
> > FreeBSD src repository
> >
> > Modified files:
> > sys/netinet in.h ip_output.c ip_var.h
> > Log:
> > Fi
Hi Bruce,
On Sun, 14 May 2006, 14:22-, Bruce M Simpson wrote:
> bms 2006-05-14 14:22:49 UTC
>
> FreeBSD src repository
>
> Modified files:
> sys/netinet in.h ip_output.c ip_var.h
> Log:
> Fix a long-standing limitation in IPv4 multicast group membership.
>
> By
Bruce M Simpson <[EMAIL PROTECTED]> wrote:
> Something like this:
In general, you may want to appropriately initialize ip_moptions
everywhere it is allocated. E.g., a quick search for "ip_moptions"
reveals that igmp_sendpkt() inside netinet/igmp.c also may have to
be modified. Another suspect (am
Something like this:
%%%
--- ip_mroute.c.origMon May 15 09:52:41 2006
+++ ip_mroute.c Mon May 15 09:54:01 2006
@@ -2115,6 +2115,7 @@
ip_output(m, NULL, &vifp->v_route, IP_FORWARDING, NULL, NULL);
else {
struct ip_moptions imo;
+ struct in_multi *imm[2];
int e
[Cc: to Pavlin]
On Sun, May 14, 2006 at 02:22:49PM +, Bruce M Simpson wrote:
> By making the imo_membership array a dynamically allocated vector,
> this minimizes disruption to existing IPv4 multicast code. This
> change breaks the ABI for the kernel module ip_mroute.ko, and may
> caus
On Sun, May 14, 2006 at 02:22:49PM +, Bruce M Simpson wrote:
> By making the imo_membership array a dynamically allocated vector,
> this minimizes disruption to existing IPv4 multicast code. This
> change breaks the ABI for the kernel module ip_mroute.ko, and may
> cause a small amount
bms 2006-05-14 14:22:49 UTC
FreeBSD src repository
Modified files:
sys/netinet in.h ip_output.c ip_var.h
Log:
Fix a long-standing limitation in IPv4 multicast group membership.
By making the imo_membership array a dynamically allocated vector,
this minimizes d
gnn 2005-12-27 00:52:24 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/netinet in.h
Log:
MFC of SCTP protocol number.
Revision ChangesPath
1.90.2.4 +1 -0 src/sys/netinet/in.h
___
delphij 2005-12-20 09:38:04 UTC
FreeBSD src repository
Modified files:
sys/netinet in.h
Log:
Use consistent indent character as other IPPROTO_* lines did.
Revision ChangesPath
1.95 +1 -1 src/sys/netinet/in.h
_
gnn 2005-12-20 09:24:04 UTC
FreeBSD src repository
Modified files:
sys/netinet in.h
Log:
Add protocol number for SCTP.
Submitted by: Randall Stewart rrs at cisco.com
MFC after: 1 week
Revision ChangesPath
1.94 +1 -0 src/sys/netinet
25 matches
Mail list logo