mirror of
https://github.com/status-im/status-go.git
synced 2025-01-24 13:41:24 +00:00
10 lines
209 B
Go
10 lines
209 B
Go
|
package dtls
|
||
|
|
||
|
import "github.com/pion/dtls/v2/pkg/protocol/recordlayer"
|
||
|
|
||
|
type packet struct {
|
||
|
record *recordlayer.RecordLayer
|
||
|
shouldEncrypt bool
|
||
|
resetLocalSequenceNumber bool
|
||
|
}
|