summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/osdnet.h
blob: 23fc032a06159b3dcc1c49ed5de8c69854a867cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include "emu.h"

#ifndef __OSDNET_H__
#define __OSDNET_H__

class netdev
{
public:
	netdev(class device_network_interface *ifdev, int rate); 
	virtual ~netdev();

	virtual int send(UINT8 *buf, int len);
	virtual void set_mac(const char *mac);
	virtual void set_promisc(bool promisc);

	const char *get_mac();
	bool get_promisc();

protected:
	virtual int recv_dev(UINT8 **buf);

private:
	void recv(void *ptr, int param);
	
	class device_network_interface *m_dev;
};

#define CREATE_NETDEV(name) class netdev *name(const char *ifname, class device_network_interface *ifdev, int rate)
typedef class netdev *(*create_netdev)(const char *ifname, class device_network_interface *ifdev, int rate);

class netdev *open_netdev(int id, class device_network_interface *ifdev, int rate);
void add_netdev(const char *name, create_netdev func);
#endif