Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / arch / um / drivers / mcast.h
blob6fa282e896bed2d1938e480b9a92e664346c1de8
1 /*
2 * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3 * Licensed under the GPL
4 */
6 #ifndef __DRIVERS_MCAST_H
7 #define __DRIVERS_MCAST_H
9 #include "net_user.h"
11 struct mcast_data {
12 char *addr;
13 unsigned short port;
14 void *mcast_addr;
15 int ttl;
16 void *dev;
19 extern const struct net_user_info mcast_user_info;
21 extern int mcast_user_write(int fd, void *buf, int len,
22 struct mcast_data *pri);
24 #endif