Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2001 Jeff Dike (jdike@karaya.com) |
| 3 | * Licensed under the GPL |
| 4 | */ |
| 5 | |
| 6 | #include "net_user.h" |
| 7 | |
| 8 | struct mcast_data { |
| 9 | char *addr; |
| 10 | unsigned short port; |
| 11 | void *mcast_addr; |
| 12 | int ttl; |
| 13 | void *dev; |
| 14 | }; |
| 15 | |
Jeff Dike | 5e7672e | 2006-09-27 01:50:33 -0700 | [diff] [blame] | 16 | extern const struct net_user_info mcast_user_info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
| 18 | extern 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 | */ |