patch-2.1.10 linux/net/ipv6/udp.c
Next file: linux/net/ipx/af_ipx.c
Previous file: linux/net/ipv6/raw.c
Back to the patch index
Back to the overall index
- Lines: 53
- Date:
Thu Nov 14 18:26:18 1996
- Orig file:
v2.1.9/linux/net/ipv6/udp.c
- Orig date:
Tue Nov 12 15:56:16 1996
diff -u --recursive --new-file v2.1.9/linux/net/ipv6/udp.c linux/net/ipv6/udp.c
@@ -172,7 +172,7 @@
int copied = 0;
int truesize;
struct sk_buff *skb;
- int er;
+ int err;
/*
@@ -187,9 +187,9 @@
* the finished NET3, it will do _ALL_ the work!
*/
- skb = skb_recv_datagram(sk, flags, noblock, &er);
+ skb = skb_recv_datagram(sk, flags, noblock, &err);
if(skb==NULL)
- return er;
+ return err;
truesize = skb->tail - skb->h.raw - sizeof(struct udphdr);
copied = min(len, truesize);
@@ -198,7 +198,11 @@
* FIXME : should use udp header size info value
*/
- skb_copy_datagram_iovec(skb,sizeof(struct udphdr),msg->msg_iov,copied);
+ err = skb_copy_datagram_iovec(skb, sizeof(struct udphdr),
+ msg->msg_iov, copied);
+ if (err)
+ return err;
+
sk->stamp=skb->stamp;
/* Copy the address. */
@@ -428,8 +432,8 @@
* with checksum
*/
-static void udpv6_getfrag(const void *data, struct in6_addr *addr,
- char *buff, unsigned int offset, unsigned int len)
+static int udpv6_getfrag(const void *data, struct in6_addr *addr,
+ char *buff, unsigned int offset, unsigned int len)
{
struct udpv6fakehdr *udh = (struct udpv6fakehdr *) data;
char *dst;
@@ -479,6 +483,7 @@
memcpy(buff, udh, sizeof(struct udphdr));
}
+ return 0;
}
static int udpv6_sendmsg(struct sock *sk, struct msghdr *msg, int ulen,
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov