--- nono/host/netdriver_bpf.cpp 2026/04/29 17:04:30 1.1.1.2 +++ nono/host/netdriver_bpf.cpp 2026/04/29 17:04:34 1.1.1.3 @@ -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_bpf.h" #include "cvprompt.h" #include "mystring.h" @@ -23,9 +23,9 @@ #include // コンストラクタ -NetDriverBPF::NetDriverBPF(EthernetDevice *p, - std::mutex *m, std::condition_variable *c) - : inherited("BPF", p, m, c) +NetDriverBPF::NetDriverBPF(EthernetDevice *parent_, + std::mutex *mtx_, std::condition_variable *cv_) + : inherited("BPF", parent_, mtx_, cv_) { fd = -1; }