Set UDPSize in connections created with client.Dial() (#1165)

This commit is contained in:
Frank Olbricht 2020-10-11 01:06:33 -06:00 committed by GitHub
parent 68df4402de
commit cec9156531
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ func (c *Client) Dial(address string) (conn *Conn, err error) {
if err != nil {
return nil, err
}
conn.UDPSize = c.UDPSize
return conn, nil
}