Contributors: 18
| Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
| Linus Torvalds (pre-git) |
80 |
47.06% |
13 |
38.24% |
| Gerrit Renker |
42 |
24.71% |
1 |
2.94% |
| Arnaldo Carvalho de Melo |
14 |
8.24% |
3 |
8.82% |
| Alexey Kuznetsov |
12 |
7.06% |
2 |
5.88% |
| Eric Dumazet |
4 |
2.35% |
1 |
2.94% |
| Hideaki Yoshifuji / 吉藤英明 |
4 |
2.35% |
2 |
5.88% |
| Al Viro |
2 |
1.18% |
1 |
2.94% |
| Alexey Kodanev |
2 |
1.18% |
1 |
2.94% |
| Linus Torvalds |
1 |
0.59% |
1 |
2.94% |
| Pavel Emelyanov |
1 |
0.59% |
1 |
2.94% |
| Stephen Hemminger |
1 |
0.59% |
1 |
2.94% |
| Dmitry Mishin |
1 |
0.59% |
1 |
2.94% |
| David S. Miller |
1 |
0.59% |
1 |
2.94% |
| Brian Haley |
1 |
0.59% |
1 |
2.94% |
| Stefano Brivio |
1 |
0.59% |
1 |
2.94% |
| Greg Kroah-Hartman |
1 |
0.59% |
1 |
2.94% |
| Kazunori Miyazawa |
1 |
0.59% |
1 |
2.94% |
| Christoph Hellwig |
1 |
0.59% |
1 |
2.94% |
| Total |
170 |
|
34 |
|
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _UDP4_IMPL_H
#define _UDP4_IMPL_H
#include <net/udp.h>
#include <net/udplite.h>
#include <net/protocol.h>
#include <net/inet_common.h>
int __udp4_lib_rcv(struct sk_buff *, struct udp_table *, int);
int __udp4_lib_err(struct sk_buff *, u32, struct udp_table *);
int udp_v4_get_port(struct sock *sk, unsigned short snum);
void udp_v4_rehash(struct sock *sk);
int udp_setsockopt(struct sock *sk, int level, int optname, sockptr_t optval,
unsigned int optlen);
int udp_getsockopt(struct sock *sk, int level, int optname,
char __user *optval, int __user *optlen);
int udp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, int flags,
int *addr_len);
void udp_destroy_sock(struct sock *sk);
#ifdef CONFIG_PROC_FS
int udp4_seq_show(struct seq_file *seq, void *v);
#endif
#endif /* _UDP4_IMPL_H */