(key string)
| 329 | } |
| 330 | |
| 331 | func (l LimitConfig) CheckDataBlobKeyLength(key string) bool { |
| 332 | return l.MaxDataBlobKeyLength == 0 || len(key) <= l.MaxDataBlobKeyLength |
| 333 | } |
| 334 | |
| 335 | func (l LimitConfig) CheckDataBlobsSize(dataBlobs []*livekit.DataBlob) bool { |
| 336 | if l.MaxDataBlobSize == 0 { |
no outgoing calls
no test coverage detected