more consistent argument ordering for tcp.Conn.Open call; DHCP client now sets ClientID correctly from config

This commit is contained in:
soypat
2025-07-21 18:39:31 -03:00
parent 2b79d0c512
commit 77bdc4c448
3 changed files with 21 additions and 14 deletions
+1 -1
View File
@@ -117,7 +117,7 @@ func setupClientServer(t *testing.T, rng *rand.Rand, client, server *StackIP, co
if err != nil {
t.Fatal(err)
}
err = connClient.OpenActive(svip, clip.Port(), 100)
err = connClient.OpenActive(clip.Port(), svip, 100)
if err != nil {
t.Fatal(err)
}