--- nono/host/netdriver_tap.cpp 2026/04/29 17:04:28 1.1 +++ nono/host/netdriver_tap.cpp 2026/04/29 17:04:34 1.1.1.2 @@ -1,9 +1,9 @@ // // nono -// Copyright (C) 2019 isaki@NetBSD.org +// Copyright (C) 2020 nono project +// Licensed under nono-license.txt // -#include "header.h" #include "netdriver_tap.h" #include "cvprompt.h" #include @@ -27,9 +27,9 @@ #endif // コンストラクタ -NetDriverTap::NetDriverTap(EthernetDevice *p, - std::mutex *m, std::condition_variable *c) - : inherited("BSD tap", p, m, c) +NetDriverTap::NetDriverTap(EthernetDevice *parent_, + std::mutex *mtx_, std::condition_variable *cv_) + : inherited("BSD tap", parent_, mtx_, cv_) { #if defined(__linux__) devpath = "/dev/net/tun";