Selaa lähdekoodia

receiver prototype

Darien Raymond 8 vuotta sitten
vanhempi
commit
1cf9cd5d78
1 muutettua tiedostoa jossa 21 lisäystä ja 0 poistoa
  1. 21 0
      app/receiver/receiver.go

+ 21 - 0
app/receiver/receiver.go

@@ -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() {
+
+}