ipfw routing/netmask problem

2001-04-30 Thread John Wilson
, the machine refuses to route via fxp0, because it thinks the default gateway is accessible via fxp1. Is there a way to save IPs (I need at least 12 DMZ IPs), while achieving the same goal? Thanks John Wilson ___ Send a cool gift with your E-Card http

Re: ipfw routing/netmask problem

2001-04-30 Thread John Wilson
Dear Nick, Thanks for your prompt reply. On Mon, 30 Apr 2001, John Wilson wrote: I have 30 IP addresses assigned to me by my ISP, for the sake of this example let's say I've got 90.91.92.0/27. The FreeBSD box has 2 interface cards, fxp0 and fxp1, fxp0 connected to the router

Compiling FreeBSD kernel with Sun's cc

2001-03-01 Thread John Wilson
Has anyone tried using Sun's optimizing cc compiler (for Solaris x86) to compile the kernel to x86 assembly, assemble it with gas, and link with GNU ld? It seems possible for a user-level application that is source-compatible with Solaris (because cc will output assembly with system call names

Re: Converting Perforce to CVS

2001-02-26 Thread John Wilson
wrote: On Sun, Feb 25, 2001 at 09:17:38AM -0800, John Wilson scribbled: | If you still have the Perforce-CVS conversion script, I would be very | grateful if you could e-mail it to me. Such a script is available for download on www.perforce.com. | On Tue, 9 Jan 2001 09:13:39 +0100

Re: Converting Perforce to CVS

2001-02-25 Thread John Wilson
Dear Anton, If you still have the Perforce-CVS conversion script, I would be very grateful if you could e-mail it to me. Thanks in advance John Wilson On Tue, 9 Jan 2001 09:13:39 +0100, Anton Berezin wrote: On Sat, Jan 06, 2001 at 03:06:20PM -0800, John Wilson wrote: I apologize

Re: operator new with C++ and pthreads

2001-02-10 Thread John Wilson
Foo *p; p = new Foo; return 0; } Compile it as follows: g++ -fno-builtin -c -o my_new.o my_new.cc g++ -fno-builtin -c -o new_test.o new_test.cc g++ -fno-builtin -o new_test new_test.o my_new.o new_test doesn't print anything (which it should, if it were linked with my_new.o) John Wi

Re: operator new with C++ and pthreads

2001-02-10 Thread John Wilson
You are absolutely right, that `inline' shouldn't have been there. My bad. It works now - thanks! John On Sat, 10 Feb 2001 15:51:35 -0800 (PST), Jean-Marc Zucconi wrote: John Wilson writes: - my_new.cc - #include stdio.h #include stdlib.h

operator new with C++ and pthreads

2001-02-09 Thread John Wilson
to link them in, and uses its own __builtin_new and __builtin_delete instead. I'm using FreeBSD RELENG_4, and compile everything -pthread -static. Incidentally, the same application compiles and works correctly on NT/Win2K. :( John Wilson ___ Send