mcast.h 711 B

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