fix: AccountDetailsByPID signature to not take in a pointer

This commit is contained in:
Jonathan Barrow 2024-07-04 17:33:14 -04:00
parent 182418f999
commit a0107a982a
No known key found for this signature in database
GPG key ID: E86E9FE9049C741F

View file

@ -29,7 +29,7 @@ type PRUDPEndPoint struct {
errorEventHandlers []func(err *Error)
ConnectionIDCounter *Counter[uint32]
ServerAccount *Account
AccountDetailsByPID func(pid *types.PID) (*Account, *Error)
AccountDetailsByPID func(pid types.PID) (*Account, *Error)
AccountDetailsByUsername func(username string) (*Account, *Error)
IsSecureEndPoint bool
CalcRetransmissionTimeoutCallback CalcRetransmissionTimeoutCallback