1/*
2 * Copyright (C) 2001 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
4 */
5
6#include "net_user.h"
7
8struct mcast_data {
9	char *addr;
10	unsigned short port;
11	void *mcast_addr;
12	int ttl;
13	void *dev;
14};
15
16extern const struct net_user_info mcast_user_info;
17
18extern int mcast_user_write(int fd, void *buf, int len,
19			    struct mcast_data *pri);
20
21/*
22 * Overrides for Emacs so that we follow Linus's tabbing style.
23 * Emacs will notice this stuff at the end of the file and automatically
24 * adjust the settings for this buffer only.  This must remain at the end
25 * of the file.
26 * ---------------------------------------------------------------------------
27 * Local variables:
28 * c-file-style: "linux"
29 * End:
30 */
31