From 9b7a798782737c12dcbfad679d8d6147cb5965e0 Mon Sep 17 00:00:00 2001 From: eyedeekay Date: Tue, 9 Jan 2024 13:34:49 -0500 Subject: [PATCH] Add a space when specifying the port to a datagram session --- datagram.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datagram.go b/datagram.go index 25aeae1..a2daee6 100644 --- a/datagram.go +++ b/datagram.go @@ -60,7 +60,7 @@ func (s *SAM) NewDatagramSession(id string, keys i2pkeys.I2PKeys, options []stri s.Close() return nil, err } - conn, err := s.newGenericSession("DATAGRAM", id, keys, options, []string{"PORT=" + lport}) + conn, err := s.newGenericSession("DATAGRAM", id, keys, options, []string{" PORT=" + lport}) if err != nil { return nil, err }