Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 250951
b: refs/heads/master
c: 4ff4d8d
h: refs/heads/master
i:
  250949: b1c0d73
  250947: 4c51edc
  250943: fe98aae
v: v3
  • Loading branch information
Nolan Leake authored and Linus Torvalds committed May 25, 2011
1 parent 6ad017b commit 273739d
Show file tree
Hide file tree
Showing 9 changed files with 414 additions and 312 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d634f194d4e2e58d57927c812aca097e67a2287d
refs/heads/master: 4ff4d8d342fe25c4d1106fb0ffdd310a43d0ace0
10 changes: 10 additions & 0 deletions trunk/Documentation/virtual/uml/UserModeLinux-HOWTO.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1182,6 +1182,16 @@
forge.net/> and explains these in detail, as well as
some other issues.

There is also a related point-to-point only "ucast" transport.
This is useful when your network does not support multicast, and
all network connections are simple point to point links.

The full set of command line options for this transport are


ethn=ucast,ethernet address,remote address,listen port,remote port




66..66.. TTUUNN//TTAAPP wwiitthh tthhee uummll__nneett hheellppeerr
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/um/drivers/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
slip-objs := slip_kern.o slip_user.o
slirp-objs := slirp_kern.o slirp_user.o
daemon-objs := daemon_kern.o daemon_user.o
mcast-objs := mcast_kern.o mcast_user.o
umcast-objs := umcast_kern.o umcast_user.o
net-objs := net_kern.o net_user.o
mconsole-objs := mconsole_kern.o mconsole_user.o
hostaudio-objs := hostaudio_kern.o
Expand Down Expand Up @@ -44,7 +44,7 @@ obj-$(CONFIG_UML_NET_SLIP) += slip.o slip_common.o
obj-$(CONFIG_UML_NET_SLIRP) += slirp.o slip_common.o
obj-$(CONFIG_UML_NET_DAEMON) += daemon.o
obj-$(CONFIG_UML_NET_VDE) += vde.o
obj-$(CONFIG_UML_NET_MCAST) += mcast.o
obj-$(CONFIG_UML_NET_MCAST) += umcast.o
obj-$(CONFIG_UML_NET_PCAP) += pcap.o
obj-$(CONFIG_UML_NET) += net.o
obj-$(CONFIG_MCONSOLE) += mconsole.o
Expand Down
24 changes: 0 additions & 24 deletions trunk/arch/um/drivers/mcast.h

This file was deleted.

120 changes: 0 additions & 120 deletions trunk/arch/um/drivers/mcast_kern.c

This file was deleted.

165 changes: 0 additions & 165 deletions trunk/arch/um/drivers/mcast_user.c

This file was deleted.

27 changes: 27 additions & 0 deletions trunk/arch/um/drivers/umcast.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/*
* Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
* Licensed under the GPL
*/

#ifndef __DRIVERS_UMCAST_H
#define __DRIVERS_UMCAST_H

#include "net_user.h"

struct umcast_data {
char *addr;
unsigned short lport;
unsigned short rport;
void *listen_addr;
void *remote_addr;
int ttl;
int unicast;
void *dev;
};

extern const struct net_user_info umcast_user_info;

extern int umcast_user_write(int fd, void *buf, int len,
struct umcast_data *pri);

#endif
Loading

0 comments on commit 273739d

Please sign in to comment.