mirror of
https://github.com/xjasonlyu/tun2socks.git
synced 2025-10-07 09:41:09 +08:00
11 lines
132 B
Go
11 lines
132 B
Go
package filter
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
// Filter is used for filtering IP packets comming from TUN.
|
|
type Filter interface {
|
|
io.Writer
|
|
}
|