reset xnet statistics

This commit is contained in:
Patricio Whittingslow
2025-10-22 23:55:09 -03:00
parent bb4053647d
commit 7ac4d556c2
+5 -1
View File
@@ -152,6 +152,8 @@ func (s *StackAsync) Reset(cfg StackConfig) error {
if s.clientID == "" { if s.clientID == "" {
s.clientID = "lneto-" + s.hostname s.clientID = "lneto-" + s.hostname
} }
s.totalrecv = 0
s.totalsent = 0
return nil return nil
} }
@@ -412,7 +414,9 @@ func (s *StackAsync) ResultDHCP() (*DHCPResults, error) {
} }
type Statistics struct { type Statistics struct {
TotalSent uint64 // Total amount of bytes sent over encapsulate.
TotalSent uint64
// Total amount of bytes received over demux.
TotalReceived uint64 TotalReceived uint64
} }