src/network

This commit is contained in:
Jasmine Iwanek
2022-03-13 09:50:25 -04:00
parent 438e05d100
commit d1dc795659
7 changed files with 220 additions and 135 deletions

View File

@@ -504,9 +504,15 @@ const lpt_device_t lpt_plip_device = {
};
const device_t plip_device = {
"Parallel Line Internet Protocol",
"plip",
DEVICE_LPT, 0,
plip_net_init, NULL,
NULL, { NULL }, NULL, NULL
.name = "Parallel Line Internet Protocol",
.internal_name = "plip",
.flags = DEVICE_LPT,
.local = 0,
.init = plip_net_init,
.close = NULL,
.reset = NULL,
{ .available = NULL },
.speed_changed = NULL,
.force_redraw = NULL,
.config = NULL
};