mirror of
https://github.com/netbirdio/netbird.git
synced 2025-01-25 07:19:05 +01:00
16 lines
371 B
Go
16 lines
371 B
Go
|
//go:build !linux || android
|
||
|
|
||
|
package server
|
||
|
|
||
|
import (
|
||
|
"archive/zip"
|
||
|
|
||
|
"github.com/netbirdio/netbird/client/anonymize"
|
||
|
"github.com/netbirdio/netbird/client/proto"
|
||
|
)
|
||
|
|
||
|
// collectFirewallRules returns nothing on non-linux systems
|
||
|
func (s *Server) addFirewallRules(req *proto.DebugBundleRequest, anonymizer *anonymize.Anonymizer, archive *zip.Writer) error {
|
||
|
return nil
|
||
|
}
|