--- nono/host/netdriver_tap.cpp 2026/04/29 17:05:11 1.1.1.6 +++ nono/host/netdriver_tap.cpp 2026/04/29 17:05:47 1.1.1.8 @@ -40,7 +40,7 @@ // コンストラクタ NetDriverTap::NetDriverTap(HostDevice *hostdev_, const std::string& devpath_) - : inherited(hostdev_, "Tap") + : inherited(hostdev_, "tap") { devpath = devpath_; if (devpath.empty()) { @@ -56,7 +56,7 @@ NetDriverTap::~NetDriverTap() // ドライバ初期化 bool -NetDriverTap::InitDriver() +NetDriverTap::InitDriver(bool startup) { bool r; @@ -314,10 +314,10 @@ NetDriverTap::Close() // モニタ (ドライバ依存情報のみ) void -NetDriverTap::MonitorUpdateMD(TextScreen& screen) +NetDriverTap::MonitorUpdateMD(TextScreen& screen, int y) { - screen.Print(0, 1, "Device : %s", devpath.c_str()); - screen.Print(0, 2, "Interface: %s", ifname.c_str()); + screen.Print(0, y++, "Device : %s", devpath.c_str()); + screen.Print(0, y++, "Interface: %s", ifname.c_str()); } // パケットを送信する