Re: Broken pipe

2000-02-06 Thread Jeroen Ruigrok/Asmodai
[This does _not_ belong on hackers, follow-ups set to questions] -On [2206 04:00], Alex ([EMAIL PROTECTED]) wrote: When I run my script,sometimes I receive next message: "/usr/sbin/wanrouter: line 5 288 Broken pipe ls $ROUTER_LOCK_DIR/ 289 Exit 1 | grep -q wanpipe*" Ehm,

Re: IPFW / IP Filter question

2000-02-06 Thread Jeroen Ruigrok/Asmodai
-On [2203 22:43], [EMAIL PROTECTED] ([EMAIL PROTECTED]) wrote: I would have thought you would use the tee option in ipfw for this, but its not implemented yet according to my man pages, so I was wondering if there was another way to do this, cause it makes traffic analysis a hell of a lot

Re: Spontaneous reboot

2000-02-06 Thread Wes Peters
Leif Neland wrote: On Sat, 5 Feb 2000, Wes Peters wrote: Next time, just become root and ping -f that Win98 machine. Running lots of pings isn't going to get you what you're trying for, even if you don't crash your FreeBSD machine. Another great program for offing Windows boxes is

Re: NMBCLUSTERS

2000-02-06 Thread Doug White
On Wed, 2 Feb 2000, Egervary Gergely wrote: what size of $SUBJECT should be used on a box with two _extremely_ busy 100baseTX interfaces? This is what we run on our mail servers (with only one interface :) ) 867/8780/16384 mbuf clusters in use (current/peak/max) I think we've blown up the

Writing a multithreaded daemon process

2000-02-06 Thread Zhihui Zhang
After reading part of the Arla daemon code available at http://www.stacken.kth.se/projekt/arla/, I feel it is a real good design. The daemon code is a multi-threaded user process that does most of the job and the kernel is an interface to VFS. They communicate with each other via a character

multithreaded IP Stack

2000-02-06 Thread Gustavo V G C Rios
Hi hackers, Currently, freebsd does lack such a support into its implementation. I would like to give a look into this topic to see what i can do to include support for free. Can anyone here point me some source of information about this topic! To Unsubscribe: send mail to [EMAIL PROTECTED]

Re: Writing a multithreaded daemon process

2000-02-06 Thread Jake Burkholder
If the daemon can somehow reside entirely inside the kernel, like NFS daemon, we can save those crossings. But the daemon is a multi-threaded process and we have no kernel thread yet, so I do not know how to do better if possible. Maybe all user filesystems have to live with this