chore: update CHANGELOG for 1.2.1 & minor code formatting update

This commit is contained in:
Toby 2022-09-09 18:24:12 -07:00
parent 1d756528a8
commit 03e397b152
3 changed files with 16 additions and 5 deletions

View file

@ -1,5 +1,12 @@
# Changelog # Changelog
## 1.2.1
- Fix a bug that caused DNS failure when using domain names in the "resolver" option
- Fix a bug where errors in HTTP proxy mode were not logged
- Fix a bug where WeChat protocol was not working properly when obfuscation was not enabled
- New TCP buffer options for tun mode (`tcp_sndbuf`, `tcp_rcvbuf`, `tcp_autotuning`)
## 1.2.0 ## 1.2.0
- Reworked TUN mode - Reworked TUN mode

View file

@ -4,13 +4,14 @@
package main package main
import ( import (
"github.com/docker/go-units"
"gvisor.dev/gvisor/pkg/tcpip/transport/tcp"
"io" "io"
"net" "net"
"strings" "strings"
"time" "time"
"github.com/docker/go-units"
"gvisor.dev/gvisor/pkg/tcpip/transport/tcp"
"github.com/HyNetwork/hysteria/pkg/core" "github.com/HyNetwork/hysteria/pkg/core"
"github.com/HyNetwork/hysteria/pkg/tun" "github.com/HyNetwork/hysteria/pkg/tun"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"

View file

@ -5,7 +5,6 @@ package tun
import ( import (
"fmt" "fmt"
"github.com/xjasonlyu/tun2socks/v2/core/option"
"net" "net"
"os" "os"
"os/signal" "os/signal"
@ -13,6 +12,8 @@ import (
"syscall" "syscall"
"time" "time"
"github.com/xjasonlyu/tun2socks/v2/core/option"
"github.com/HyNetwork/hysteria/pkg/core" "github.com/HyNetwork/hysteria/pkg/core"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
t2score "github.com/xjasonlyu/tun2socks/v2/core" t2score "github.com/xjasonlyu/tun2socks/v2/core"
@ -66,7 +67,8 @@ func (d *DeviceInfo) Open() (dev device.Device, err error) {
} }
func NewServerWithTunFd(hyClient *core.Client, timeout time.Duration, tunFd int, mtu uint32, func NewServerWithTunFd(hyClient *core.Client, timeout time.Duration, tunFd int, mtu uint32,
tcpSendBufferSize, tcpReceiveBufferSize int, tcpModerateReceiveBuffer bool) (*Server, error) { tcpSendBufferSize, tcpReceiveBufferSize int, tcpModerateReceiveBuffer bool,
) (*Server, error) {
if mtu == 0 { if mtu == 0 {
mtu = MTU mtu = MTU
} }
@ -86,7 +88,8 @@ func NewServerWithTunFd(hyClient *core.Client, timeout time.Duration, tunFd int,
} }
func NewServer(hyClient *core.Client, timeout time.Duration, name string, mtu uint32, func NewServer(hyClient *core.Client, timeout time.Duration, name string, mtu uint32,
tcpSendBufferSize, tcpReceiveBufferSize int, tcpModerateReceiveBuffer bool) (*Server, error) { tcpSendBufferSize, tcpReceiveBufferSize int, tcpModerateReceiveBuffer bool,
) (*Server, error) {
if mtu == 0 { if mtu == 0 {
mtu = MTU mtu = MTU
} }