|
|
|
1995/0108/sys/src/9/port/devlance.c:366,374 –
1995/0804/sys/src/9/port/devlance.c:366,373
(short | long | prev | next)
|
|
1993/0806
| |
* turn promiscuous mode on/off
|
|
1991/0621
| |
*/
|
|
1991/1106
| |
static void
|
|
1993/0806
| |
promiscuous(void *arg, int on)
|
|
1995/0804
| |
promiscuous(void*, int on)
|
|
1991/0621
| |
{
|
|
1993/0806
| |
USED(arg);
if(on)
lancestart(PROM);
else
|
|
1995/0108/sys/src/9/port/devlance.c:408,416 –
1995/0804/sys/src/9/port/devlance.c:407,414
|
|
1993/0806
| |
}
|
|
1991/1115
| |
|
|
1993/0806
| |
void
lancecreate(Chan *c, char *name, int omode, ulong perm)
|
|
1995/0804
| |
lancecreate(Chan*, char*, int, ulong)
|
|
1993/0806
| |
{
USED(c, name, omode, perm);
|
|
1990/0227
| |
}
|
|
1991/1027
| |
|
|
1993/0806
| |
void
|
|
1995/0108/sys/src/9/port/devlance.c:465,477 –
1995/0804/sys/src/9/port/devlance.c:463,473
|
|
1993/1008
| |
}
|
|
1993/0806
| |
long
lancewrite(Chan *c, void *buf, long n, ulong offset)
|
|
1995/0804
| |
lancewrite(Chan *c, void *buf, long n, ulong)
|
|
1993/0806
| |
{
Msg *m;
Lancepkt *p;
|
|
1992/0717
| |
|
|
1993/0806
| |
USED(offset);
|
|
1991/0621
| |
|
|
1993/0806
| |
if(n > ETHERMAXTU)
error(Ebadarg);
|
|
1992/0605
| |
|
|
1995/0108/sys/src/9/port/devlance.c:522,530 –
1995/0804/sys/src/9/port/devlance.c:518,525
|
|
1993/0806
| |
}
void
lanceremove(Chan *c)
|
|
1995/0804
| |
lanceremove(Chan*)
|
|
1993/0806
| |
{
USED(c);
}
void
|