[BACK]Return to mcast.h CVS log [TXT][DIR] Up to [Development] / linux-2.6-xfs / arch / um / drivers

File: [Development] / linux-2.6-xfs / arch / um / drivers / mcast.h (download)

Revision 1.3, Mon Dec 3 16:26:37 2007 UTC (9 years, 10 months ago) by lachlan.longdrop.melbourne.sgi.com
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +5 -11 lines

Merge up to 2.6.24-rc3
Merge of 2.6.x-xfs-melb:linux:30183b by kenmcd.

/* 
 * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
 * Licensed under the GPL
 */

#ifndef __DRIVERS_MCAST_H
#define __DRIVERS_MCAST_H

#include "net_user.h"

struct mcast_data {
	char *addr;
	unsigned short port;
	void *mcast_addr;
	int ttl;
	void *dev;
};

extern const struct net_user_info mcast_user_info;

extern int mcast_user_write(int fd, void *buf, int len, 
			    struct mcast_data *pri);

#endif