diff options
author | Nolan Leake <nolan@sigbus.net> | 2011-05-24 17:13:02 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-25 08:39:41 -0700 |
commit | 4ff4d8d342fe25c4d1106fb0ffdd310a43d0ace0 (patch) | |
tree | b41ea0ecc007f1c90eceada0db081dc0fb81700c /arch/um/drivers/mcast.h | |
parent | d634f194d4e2e58d57927c812aca097e67a2287d (diff) | |
download | op-kernel-dev-4ff4d8d342fe25c4d1106fb0ffdd310a43d0ace0.zip op-kernel-dev-4ff4d8d342fe25c4d1106fb0ffdd310a43d0ace0.tar.gz |
um: add ucast ethernet transport
The ucast transport is similar to the mcast transport (and, in fact,
shares most of its code), only it uses UDP unicast to move packets.
Obviously this is only useful for point-to-point connections between
virtual ethernet devices.
Signed-off-by: Nolan Leake <nolan@cumulusnetworks.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
Cc: David Miller <davem@davemloft.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um/drivers/mcast.h')
-rw-r--r-- | arch/um/drivers/mcast.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/arch/um/drivers/mcast.h b/arch/um/drivers/mcast.h deleted file mode 100644 index 6fa282e..0000000 --- a/arch/um/drivers/mcast.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) - * Licensed under the GPL - */ - -#ifndef __DRIVERS_MCAST_H -#define __DRIVERS_MCAST_H - -#include "net_user.h" - -struct mcast_data { - char *addr; - unsigned short port; - void *mcast_addr; - int ttl; - void *dev; -}; - -extern const struct net_user_info mcast_user_info; - -extern int mcast_user_write(int fd, void *buf, int len, - struct mcast_data *pri); - -#endif |