Release 4.12 include/net/inet_common.h
#ifndef _INET_COMMON_H
#define _INET_COMMON_H
extern const struct proto_ops inet_stream_ops;
extern const struct proto_ops inet_dgram_ops;
/*
* INET4 prototypes used by INET6
*/
struct msghdr;
struct sock;
struct sockaddr;
struct socket;
int inet_release(struct socket *sock);
int inet_stream_connect(struct socket *sock, struct sockaddr *uaddr,
int addr_len, int flags);
int __inet_stream_connect(struct socket *sock, struct sockaddr *uaddr,
int addr_len, int flags, int is_sendmsg);
int inet_dgram_connect(struct socket *sock, struct sockaddr *uaddr,
int addr_len, int flags);
int inet_accept(struct socket *sock, struct socket *newsock, int flags,
bool kern);
int inet_sendmsg(struct socket *sock, struct msghdr *msg, size_t size);
ssize_t inet_sendpage(struct socket *sock, struct page *page, int offset,
size_t size, int flags);
int inet_recvmsg(struct socket *sock, struct msghdr *msg, size_t size,
int flags);
int inet_shutdown(struct socket *sock, int how);
int inet_listen(struct socket *sock, int backlog);
void inet_sock_destruct(struct sock *sk);
int inet_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len);
int inet_getname(struct socket *sock, struct sockaddr *uaddr, int *uaddr_len,
int peer);
int inet_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg);
int inet_ctl_sock_create(struct sock **sk, unsigned short family,
unsigned short type, unsigned char protocol,
struct net *net);
int inet_recv_error(struct sock *sk, struct msghdr *msg, int len,
int *addr_len);
struct sk_buff **inet_gro_receive(struct sk_buff **head, struct sk_buff *skb);
int inet_gro_complete(struct sk_buff *skb, int nhoff);
struct sk_buff *inet_gso_segment(struct sk_buff *skb,
netdev_features_t features);
static inline void inet_ctl_sock_destroy(struct sock *sk)
{
if (sk)
sock_release(sk->sk_socket);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Denis V. Lunev | 16 | 69.57% | 1 | 33.33% |
Eric Dumazet | 4 | 17.39% | 1 | 33.33% |
Eric W. Biedermann | 3 | 13.04% | 1 | 33.33% |
Total | 23 | 100.00% | 3 | 100.00% |
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 134 | 34.54% | 4 | 21.05% |
Jon Grimm | 55 | 14.18% | 1 | 5.26% |
Tom Herbert | 44 | 11.34% | 1 | 5.26% |
Changli Gao | 43 | 11.08% | 1 | 5.26% |
Denis V. Lunev | 43 | 11.08% | 3 | 15.79% |
Willem de Bruijn | 21 | 5.41% | 1 | 5.26% |
Yuchung Cheng | 20 | 5.15% | 1 | 5.26% |
Arnaldo Carvalho de Melo | 12 | 3.09% | 1 | 5.26% |
Eric Dumazet | 6 | 1.55% | 2 | 10.53% |
Eric W. Biedermann | 3 | 0.77% | 1 | 5.26% |
David Howells | 3 | 0.77% | 1 | 5.26% |
Willy Tarreau | 3 | 0.77% | 1 | 5.26% |
Stephen Hemminger | 1 | 0.26% | 1 | 5.26% |
Total | 388 | 100.00% | 19 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.