1
0
mirror of https://github.com/fumiama/WireGold.git synced 2026-06-27 14:20:27 +08:00

chore: make lint happy

This commit is contained in:
源文雨
2024-07-11 18:14:24 +09:00
parent c0f31a70c8
commit 0edf4e92c3
5 changed files with 90 additions and 10 deletions

View File

@@ -121,7 +121,7 @@ func (m *Me) MTU() uint16 {
return m.mtu
}
func (m *Me) Close() error {
func (m *Me) CloseNIC() error {
m.nic.Down()
return m.nic.Close()
}
@@ -132,7 +132,7 @@ func (m *Me) Write(packet []byte) (n int, err error) {
return
}
func (m *Me) ListenFromNIC() (written int64, err error) {
func (m *Me) ListenNIC() (written int64, err error) {
m.nic.Up()
return io.Copy(m, m.nic)
}