mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-04 13:07:39 +03:00
Add Win32 VT mode support
This commit is contained in:
parent
c0ab06e961
commit
aa7766b47e
1 changed files with 20 additions and 0 deletions
|
@ -7,6 +7,7 @@ import (
|
|||
"net"
|
||||
"os"
|
||||
"regexp"
|
||||
"runtime"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
|
@ -14,6 +15,7 @@ import (
|
|||
"github.com/sirupsen/logrus"
|
||||
"github.com/spf13/cobra"
|
||||
"github.com/spf13/viper"
|
||||
"golang.org/x/sys/windows"
|
||||
)
|
||||
|
||||
const (
|
||||
|
@ -142,6 +144,21 @@ var serverCmd = &cobra.Command{
|
|||
},
|
||||
}
|
||||
|
||||
// Add console VT color mode
|
||||
func openWinVT() {
|
||||
if runtime.GOOS != "windows" {
|
||||
return
|
||||
}
|
||||
stdout := windows.Handle(os.Stdout.Fd())
|
||||
|
||||
var mode uint32
|
||||
windows.GetConsoleMode(stdout, &mode)
|
||||
|
||||
mode |= windows.ENABLE_VIRTUAL_TERMINAL_PROCESSING // Add VT Color Support
|
||||
|
||||
windows.SetConsoleMode(stdout, mode)
|
||||
}
|
||||
|
||||
// fakeFlags replace the old flag format with the new format(eg: `-config` ->> `--config`)
|
||||
func fakeFlags() {
|
||||
var args []string
|
||||
|
@ -157,6 +174,9 @@ func fakeFlags() {
|
|||
}
|
||||
|
||||
func init() {
|
||||
//
|
||||
openWinVT()
|
||||
|
||||
// compatible with old flag format
|
||||
fakeFlags()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue