Files
webrtc/constants.go
Andrew N. Shalaev d8d2295368 Decrease to 1460 bytes for less memory bloat
The value we picked before was just used for debugging
when first starting Pion
2019-11-13 10:58:36 -08:00

13 lines
248 B
Go

package webrtc
const (
// Unknown defines default public constant to use for "enum" like struct
// comparisons when no value was defined.
Unknown = iota
unknownStr = "unknown"
ssrcStr = "ssrc"
// Equal to UDP MTU
receiveMTU = 1460
)