mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-02 23:47:07 -05:00
receiver prototype
This commit is contained in:
parent
fb8cbe4b20
commit
1cf9cd5d78
21
app/receiver/receiver.go
Normal file
21
app/receiver/receiver.go
Normal file
@ -0,0 +1,21 @@
|
||||
package receiver
|
||||
|
||||
import (
|
||||
"net"
|
||||
|
||||
"v2ray.com/core/proxy"
|
||||
)
|
||||
|
||||
type refresher struct {
|
||||
}
|
||||
|
||||
type StreamReceiver struct {
|
||||
config *StreamReceiverConfig
|
||||
proxy *proxy.InboundHandler
|
||||
|
||||
listeners []net.Listener
|
||||
}
|
||||
|
||||
func (r *StreamReceiver) Start() {
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user