package stun const ( padding = 4 ) func nearestPaddedValueLength(l int) int { n := padding * (l / padding) if n < l { n += padding } return n }