Files
haiku-beta6/headers/private/net/ether_driver.h
T
Axel Dörfler 1a3ab92b81 * Rewrote ether_driver.h, removed some BONE stuff we don't support at this point;
it might also be a good idea to change the constants to better match the usual
  style.
* Added a BSD-style if_media.h.
* Added interface flags IFF_LINK, IFF_AUTO_CONFIGURED, and IFF_CONFIGURING. The
  former will be set automatically by the stack, the rest will be set by the
  net_server depending on the current state.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20535 a95241bf-73f2-0310-859d-f6bbb57e9c96
2007-04-03 14:42:07 +00:00

42 lines
1.1 KiB
C

/*
* Copyright 2007, Haiku, Inc. All Rights Reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef _ETHER_DRIVER_H
#define _ETHER_DRIVER_H
/*! Standard ethernet driver interface */
#include <Drivers.h>
/* ioctl() opcodes a driver should support */
enum {
ETHER_GETADDR = B_DEVICE_OP_CODES_END,
/* get ethernet address (required) */
ETHER_INIT, /* (obsolete) */
ETHER_NONBLOCK, /* change non blocking mode (int *) */
ETHER_ADDMULTI, /* add multicast address */
ETHER_REMMULTI, /* remove multicast address */
ETHER_SETPROMISC, /* set promiscuous mode (int *) */
ETHER_GETFRAMESIZE, /* get frame size (required) (int *) */
ETHER_GETLINKSTATE
/* get line speed, quality, duplex mode, etc. (ether_link_state_t *) */
};
/* ETHER_GETADDR - MAC address */
typedef struct {
uint8 ebyte[6];
} ether_address_t;
/* ETHER_GETLINKSTATE */
typedef struct ether_link_state {
uint32 link_media; /* as specified in net/if_media.h */
uint32 link_quality; /* in one tenth of a percent */
uint64 link_speed; /* in Kbit/s */
} ether_link_state_t;
#endif /* _ETHER_DRIVER_H */