Add missed description for the `ds' (disc(4)) pseudo-interface.

Sponsored by:	Porta Software Ltd
MFC after:	20 days
This commit is contained in:
Maxim Sobolev 2003-03-05 18:07:59 +00:00
parent b209d7e493
commit c4020e6e93
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=111914
2 changed files with 4 additions and 2 deletions

View file

@ -131,6 +131,7 @@ static struct _devname {
{ DEVICE_TYPE_NETWORK, "cuaa%d", "%s on device %s (COM%d)", 28, 128, 1, 16 },
{ DEVICE_TYPE_NETWORK, "lp", "Parallel Port IP (PLIP) peer connection" },
{ DEVICE_TYPE_NETWORK, "lo", "Loop-back (local) network interface" },
{ DEVICE_TYPE_NETWORK, "ds", "Software discard network interface" },
#ifdef PC98
{ DEVICE_TYPE_DISK, "wd%d", "IDE disk device", 3, 65538, 8, 16 },
{ DEVICE_TYPE_CDROM, "wcd%dc", "ATAPI IDE CDROM", 69, 2, 8, 4 },
@ -446,7 +447,7 @@ deviceGetAll(void)
Disk *d;
/* Ignore memory disks */
if (!strncmp(names[i], "md", 2))
if (!strncmp(names[i], "m_d", 2))
continue;
d = Open_Disk(names[i]);

View file

@ -131,6 +131,7 @@ static struct _devname {
{ DEVICE_TYPE_NETWORK, "cuaa%d", "%s on device %s (COM%d)", 28, 128, 1, 16 },
{ DEVICE_TYPE_NETWORK, "lp", "Parallel Port IP (PLIP) peer connection" },
{ DEVICE_TYPE_NETWORK, "lo", "Loop-back (local) network interface" },
{ DEVICE_TYPE_NETWORK, "ds", "Software discard network interface" },
#ifdef PC98
{ DEVICE_TYPE_DISK, "wd%d", "IDE disk device", 3, 65538, 8, 16 },
{ DEVICE_TYPE_CDROM, "wcd%dc", "ATAPI IDE CDROM", 69, 2, 8, 4 },
@ -446,7 +447,7 @@ deviceGetAll(void)
Disk *d;
/* Ignore memory disks */
if (!strncmp(names[i], "md", 2))
if (!strncmp(names[i], "m_d", 2))
continue;
d = Open_Disk(names[i]);