mirror of
https://github.com/safing/portmaster
synced 2025-09-02 02:29:12 +00:00
62 lines
1.2 KiB
Go
62 lines
1.2 KiB
Go
//go:build linux
|
|
|
|
package proc
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestSockets(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
connections, listeners, err := GetTCP4Table()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
fmt.Println("\nTCP 4 connections:")
|
|
for _, connection := range connections {
|
|
pid := GetPID(connection)
|
|
fmt.Printf("%d: %+v\n", pid, connection)
|
|
}
|
|
fmt.Println("\nTCP 4 listeners:")
|
|
for _, listener := range listeners {
|
|
pid := GetPID(listener)
|
|
fmt.Printf("%d: %+v\n", pid, listener)
|
|
}
|
|
|
|
connections, listeners, err = GetTCP6Table()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
fmt.Println("\nTCP 6 connections:")
|
|
for _, connection := range connections {
|
|
pid := GetPID(connection)
|
|
fmt.Printf("%d: %+v\n", pid, connection)
|
|
}
|
|
fmt.Println("\nTCP 6 listeners:")
|
|
for _, listener := range listeners {
|
|
pid := GetPID(listener)
|
|
fmt.Printf("%d: %+v\n", pid, listener)
|
|
}
|
|
|
|
binds, err := GetUDP4Table()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
fmt.Println("\nUDP 4 binds:")
|
|
for _, bind := range binds {
|
|
pid := GetPID(bind)
|
|
fmt.Printf("%d: %+v\n", pid, bind)
|
|
}
|
|
|
|
binds, err = GetUDP6Table()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
fmt.Println("\nUDP 6 binds:")
|
|
for _, bind := range binds {
|
|
pid := GetPID(bind)
|
|
fmt.Printf("%d: %+v\n", pid, bind)
|
|
}
|
|
}
|