An error occurred fetching the project authors.
- 23 Jun, 2003 1 commit
-
-
Herbert Xu authored
-
- 18 Jun, 2003 1 commit
-
-
Arnaldo Carvalho de Melo authored
With this we make it easier to write correct network families as less details need to be taken into account, as well in the current state we make the non-refcounting protocols (the ones still keeping deliver_to_old_ones in the tree) suck less. 8) Left a WARN_ON in sk_del_node_init for a while, so that we can catch cases where we're using __sock_put on a struct sock that has refcnt == 1, which is not the case for all the ones I tested.
-
- 16 Jun, 2003 1 commit
-
-
Arnaldo Carvalho de Melo authored
-
- 09 Jun, 2003 1 commit
-
-
Herbert Xu authored
-
- 06 Jun, 2003 1 commit
-
-
Herbert Xu authored
-
- 04 Jun, 2003 1 commit
-
-
Arnaldo Carvalho de Melo authored
With this the data dependency is reduced to just making sure that the first member of both struct sock and struct tcp_tw_bucket are a struct sock_common. Also makes it easier to grep for struct sock and struct tcp_tw_bucket usage in the tree as all the members in those structs are prefixed, respectively, with sk_ and tw_, like struct inode (i_), struct block_device (bd_), etc. Checked namespace with make tags/ctags, just one colision with the macros for the struct sock members, with a wanrouter struct, fixed that s/sk_state/state_sk/g in the wanrouter struct. Checked as well if the names of the members in both structs collided with some macro, none found.
-
- 28 May, 2003 1 commit
-
-
Arnaldo Carvalho de Melo authored
This makes: 1. simpler primitive to access struct sock flags, shorter 2. we check if the flag is valid by using enum sock_flags 3. we can change the implementation to an open coded bit operations if it proves to be faster than the more general bit manipulation routines now used, i.e. we only have to change sock.h, not the whole net tree like now
-
- 22 May, 2003 1 commit
-
-
Herbert Xu authored
-
- 14 May, 2003 1 commit
-
-
David S. Miller authored
-
- 12 May, 2003 1 commit
-
-
James Morris authored
-
- 08 May, 2003 1 commit
-
-
James Morris authored
-
- 03 May, 2003 1 commit
-
-
Arnaldo Carvalho de Melo authored
Using sk_set_owner and having THIS_MODULE in the struct proto_ops registered with the core.
-
- 28 Apr, 2003 1 commit
-
-
Arnaldo Carvalho de Melo authored
Now the core networking infrastructure will (finally) do that for the net protocol families, its just a matter of setting the ->owner field in the registered struct net_proto_family to THIS_MODULE.
-
- 02 Apr, 2003 2 commits
-
-
David S. Miller authored
-
Derek Atkins authored
In particular, implement ESPinUDP encapsulation for IPsec Nat Traversal.
-
- 22 Mar, 2003 2 commits
-
-
Hideaki Yoshifuji authored
-
James Morris authored
-
- 20 Mar, 2003 1 commit
-
-
Tom Lendacky authored
-
- 19 Mar, 2003 1 commit
-
-
Thomas Walpuski authored
-
- 06 Mar, 2003 1 commit
-
-
Benjamin LaHaise authored
1) Pull scm argument from sendmsg/recvmsg, it is available from I/O control block 2) Consolidate networking syscall compat call into net/compat.c 3) Change ops->{sendmsg,recvmsg}() code sequences into sock_{sendmsg,recvmsg}()
-
- 05 Mar, 2003 1 commit
-
-
Kazunori Miyazawa authored
Credits also to Mitsuru Kanda <kanda@karaba.org>, YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>, and Kunihiro Ishiguro.
-
- 02 Mar, 2003 2 commits
-
-
James Morris authored
-
James Morris authored
-
- 19 Feb, 2003 1 commit
-
-
Hideaki Yoshifuji authored
-
- 12 Feb, 2003 8 commits
-
-
David S. Miller authored
-
David S. Miller authored
-
Kunihiro Ishiguro authored
-
David S. Miller authored
-
Tom Lendacky authored
-
David S. Miller authored
-
Tom Lendacky authored
-
Joy Latten authored
-
- 08 Jan, 2003 1 commit
-
-
James Morris authored
-
- 21 Dec, 2002 1 commit
-
-
Christoph Hellwig authored
-
- 18 Nov, 2002 1 commit
-
-
Alexey Kuznetsov authored
- Implement policy timeouts. - Make PF_KEY return proper error from KM acquire.
-
- 14 Nov, 2002 2 commits
-
-
Alexey Kuznetsov authored
- xfrm_state.c: never return mature SAs on getspi. - af_key.c: do not forget to delete dummy super-larvals when they are resolved - af_key.c: wow! specially for this case I added gfp argument to xfrm_alloc_policy() and forgot to use it really.
-
James Morris authored
-
- 10 Nov, 2002 1 commit
-
-
Alexey Kuznetsov authored
- Make connect() policy selection actually happen - return len instead of 0 on successful pfkey sendmsg - make prefixlen checks in a way more compatible with isakmpd - key manager wait queues are totally wrong
-
- 07 Nov, 2002 1 commit
-
-
Alexey Kuznetsov authored
1. Expiration of SAs. Some missing updates of counters. Question: very strange, rfc defines use_time as time of the first use of SA. But kame setkey refers to this as lastuse. 2. Bug fixes for tunnel mode and forwarding. 3. Fix bugs in per-socket policy: policy entries do not leak but are destroyed, when socket is closed, and are cloned on children of listening sockets. 4. Implemented use policy: i.e. use ipsec if a SA is available, ignore if it is not. 5. Added sysctl to disable in/out policy on some devices. It is set on loopback by default. 6. Remove resolved reference from template. It is not used, but pollutes code. 7. Added all the SASTATEs, now they make sense.
-
- 06 Nov, 2002 1 commit
-
-
Alexey Kuznetsov authored
-