You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Quoted code transforms the true value to 0x11 which is correct: flags (higher 4 bits) are 0001 and type (lower 4 bits) is 0001 but the false value is transformed to 0x10 which is wrong: flags are 0001 and type is 0000 but should be vice versa.
Encoder doesn't set boolean data type in the buffer when the value being encoded is false:
haproxy-spoe-go/typeddata/typeddata.go
Lines 51 to 57 in 9a8c9fb
False value should be
0x01
, not0x10
as it's set currently.The text was updated successfully, but these errors were encountered: