2018-06-14 01:00:58 +08:00
|
|
|
package http
|
2018-06-10 22:50:03 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net"
|
2019-06-27 17:04:25 +08:00
|
|
|
"time"
|
2018-06-10 22:50:03 +08:00
|
|
|
|
2019-06-27 17:04:25 +08:00
|
|
|
"github.com/Dreamacro/clash/common/cache"
|
2021-06-13 17:23:10 +08:00
|
|
|
C "github.com/Dreamacro/clash/constant"
|
2018-06-10 22:50:03 +08:00
|
|
|
)
|
|
|
|
|
2021-06-13 17:23:10 +08:00
|
|
|
type Listener struct {
|
2021-06-13 23:05:22 +08:00
|
|
|
listener net.Listener
|
2021-08-01 00:35:37 +08:00
|
|
|
addr string
|
2021-06-13 23:05:22 +08:00
|
|
|
closed bool
|
2018-11-22 11:54:01 +08:00
|
|
|
}
|
|
|
|
|
2021-08-01 00:35:37 +08:00
|
|
|
// RawAddress implements C.Listener
|
|
|
|
func (l *Listener) RawAddress() string {
|
|
|
|
return l.addr
|
|
|
|
}
|
|
|
|
|
|
|
|
// Address implements C.Listener
|
|
|
|
func (l *Listener) Address() string {
|
|
|
|
return l.listener.Addr().String()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close implements C.Listener
|
|
|
|
func (l *Listener) Close() error {
|
|
|
|
l.closed = true
|
|
|
|
return l.listener.Close()
|
|
|
|
}
|
|
|
|
|
2021-06-13 17:23:10 +08:00
|
|
|
func New(addr string, in chan<- C.ConnContext) (*Listener, error) {
|
2021-06-15 17:13:40 +08:00
|
|
|
return NewWithAuthenticate(addr, in, true)
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewWithAuthenticate(addr string, in chan<- C.ConnContext, authenticate bool) (*Listener, error) {
|
2018-07-15 22:23:20 +08:00
|
|
|
l, err := net.Listen("tcp", addr)
|
|
|
|
if err != nil {
|
2018-11-22 11:54:01 +08:00
|
|
|
return nil, err
|
2018-07-15 22:23:20 +08:00
|
|
|
}
|
2021-06-15 17:13:40 +08:00
|
|
|
|
2022-04-05 23:29:52 +08:00
|
|
|
var c *cache.Cache[string, bool]
|
2021-06-15 17:13:40 +08:00
|
|
|
if authenticate {
|
2022-04-05 23:29:52 +08:00
|
|
|
c = cache.New[string, bool](time.Second * 30)
|
2021-06-15 17:13:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
hl := &Listener{
|
|
|
|
listener: l,
|
2021-08-01 00:35:37 +08:00
|
|
|
addr: addr,
|
2021-06-15 17:13:40 +08:00
|
|
|
}
|
2018-07-15 22:23:20 +08:00
|
|
|
go func() {
|
2018-08-11 22:51:30 +08:00
|
|
|
for {
|
2021-06-15 17:13:40 +08:00
|
|
|
conn, err := hl.listener.Accept()
|
2018-08-11 22:51:30 +08:00
|
|
|
if err != nil {
|
2018-11-22 11:54:01 +08:00
|
|
|
if hl.closed {
|
2018-08-11 22:51:30 +08:00
|
|
|
break
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
2021-06-15 17:13:40 +08:00
|
|
|
go HandleConn(conn, in, c)
|
2018-08-11 22:51:30 +08:00
|
|
|
}
|
2018-07-15 22:23:20 +08:00
|
|
|
}()
|
|
|
|
|
2018-11-22 11:54:01 +08:00
|
|
|
return hl, nil
|
|
|
|
}
|