diff options
author | Tom Herbert <therbert@google.com> | 2015-01-05 13:56:17 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-01-05 22:44:46 -0500 |
commit | ad6f939ab193750cc94a265f58e007fb598c97b7 (patch) | |
tree | f00a55adcedfde95441ed2ec498a2a294623522e /include/net/inet_sock.h | |
parent | 5961de9f199bef6ff437d7d85fe69b6a1964739b (diff) | |
download | linux-stable-ad6f939ab193750cc94a265f58e007fb598c97b7.tar.gz linux-stable-ad6f939ab193750cc94a265f58e007fb598c97b7.tar.bz2 linux-stable-ad6f939ab193750cc94a265f58e007fb598c97b7.zip |
ip: Add offset parameter to ip_cmsg_recv
Add ip_cmsg_recv_offset function which takes an offset argument
that indicates the starting offset in skb where data is being received
from. This will be useful in the case of UDP and provided checksum
to user space.
ip_cmsg_recv is an inline call to ip_cmsg_recv_offset with offset of
zero.
Signed-off-by: Tom Herbert <therbert@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/inet_sock.h')
-rw-r--r-- | include/net/inet_sock.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/inet_sock.h b/include/net/inet_sock.h index 605ca421d5ab..eb16c7beed1e 100644 --- a/include/net/inet_sock.h +++ b/include/net/inet_sock.h @@ -203,6 +203,7 @@ struct inet_sock { #define IP_CMSG_RETOPTS BIT(4) #define IP_CMSG_PASSSEC BIT(5) #define IP_CMSG_ORIGDSTADDR BIT(6) +#define IP_CMSG_CHECKSUM BIT(7) static inline struct inet_sock *inet_sk(const struct sock *sk) { |