search for: sys_bind

Displaying 6 results from an estimated 6 matches for "sys_bind".

Did you mean: sysc_bind
2016 Jan 06
0
[klibc:master] Remove sys/socketcalls.h
.../sys/socketcalls.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * sys/socketcalls.h - */ - -#ifndef _SYS_SOCKETCALLS_H -#define _SYS_SOCKETCALLS_H - -/* socketcalls by number, since <linux/net.h> isn't usable for assembly */ - -#define SYS_SOCKET 1 /* sys_socket(2) */ -#define SYS_BIND 2 /* sys_bind(2) */ -#define SYS_CONNECT 3 /* sys_connect(2) */ -#define SYS_LISTEN 4 /* sys_listen(2) */ -#define SYS_ACCEPT 5 /* sys_accept(2) */ -#define SYS_GETSOCKNAME 6 /* sys_getsockname(2) */ -#defin...
2008 Jul 21
0
Boot problem with current xen-unstable
...ks I have been unable to get this tree to complete booting. It gets as far as running the rc scripts, then oopses in netlink_insert. I don''t have a working serial console, but from what''s left on the screen I can see that the process is udevd, the stack trace is: netlink_bind sys_bind get_empty_filp sys_setsockopt system_call Is this a familiar problem to anyone? Is there some config option I have set wrong? Thanks, Dave McCracken _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2011 Aug 18
4
[RFC 0/0] Introducing a generic socket offload framework
...ity) involved with attempting to maintain a general solution compatible accross various distributions where platform-libraries differ. CAVEATS ------- * We're currently hooked into too many socket calls. We should be able to reduce the number of hooks to 3 (__sock_create(), sys_connect(), sys_bind()). * Our 'hw_socket' component should be folded into a netdev so we can leverage NAPI. * We don't handle SOCK_SEQPACKET, SOCK_RAW, SOCK_RDM, or SOCK_PACKET sockets. * We don't currently have support for /proc/net. Our current plan is to add '/proc/net/hwsock' (f...
2011 Aug 18
4
[RFC 0/0] Introducing a generic socket offload framework
...ity) involved with attempting to maintain a general solution compatible accross various distributions where platform-libraries differ. CAVEATS ------- * We're currently hooked into too many socket calls. We should be able to reduce the number of hooks to 3 (__sock_create(), sys_connect(), sys_bind()). * Our 'hw_socket' component should be folded into a netdev so we can leverage NAPI. * We don't handle SOCK_SEQPACKET, SOCK_RAW, SOCK_RDM, or SOCK_PACKET sockets. * We don't currently have support for /proc/net. Our current plan is to add '/proc/net/hwsock' (f...
2008 Sep 12
4
Custom build kernel patch fails big time.
...5-25 12:21:12.000000000 +0300 @@ -24,7 +24,7 @@ struct poll_table_struct; struct inode; -#define NPROTO 32 /* should be enough for now.. */ +#define NPROTO 33 /* should be enough for now.. */ #define SYS_SOCKET 1 /* sys_socket(2) */ #define SYS_BIND 2 /* sys_bind(2) */ diff -urN a/include/linux/in.h b/include/linux/in.h --- a/include/linux/in.h 2007-05-25 12:21:12.000000000 +0300 +++ b/include/linux/in.h 2007-05-25 12:21:12.000000000 +0300 @@ -40,6 +40,7 @@ IPPROTO_ESP = 50, /* Encapsulation Security Paylo...
2003 Jul 12
5
jails, ipfilter & stunnel
I'm setting up a server where I plan to use Jails to improve security I also have installed and am configuring ipfilter. Here are my questions: Because I'm using Jails, I will have to have multiple ip aliases on the network interface. I will use ipfilter to specify what can go to each of the addresses. (e.g., allow only incoming to port 80 on the jail running apache). Another