-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
Showing
9 changed files
with
414 additions
and
312 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: d634f194d4e2e58d57927c812aca097e67a2287d | ||
refs/heads/master: 4ff4d8d342fe25c4d1106fb0ffdd310a43d0ace0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.