mirror of
https://github.com/netbirdio/wireguard-go.git
synced 2026-05-22 17:08:51 -07:00
11 lines
177 B
Go
11 lines
177 B
Go
package conn
|
|
|
|
import (
|
|
"net"
|
|
"sync"
|
|
)
|
|
|
|
type ReceiverCreator interface {
|
|
CreateReceiverFn(pc BatchReader, conn *net.UDPConn, rxOffload bool, msgPool *sync.Pool) ReceiveFunc
|
|
}
|