Skip to content

Commit

Permalink
fix: AccountDetailsByPID signature to not take in a pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
jonbarrow committed Jul 4, 2024
1 parent 182418f commit a0107a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prudp_endpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a0107a9

Please sign in to comment.