-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconf.go
63 lines (51 loc) · 1.39 KB
/
conf.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package main
import (
"encoding/json"
"io/ioutil"
"regexp"
)
type Proxy struct {
Port uint16 `json:"ClientPort"`
Proxy string `json:"ServerProxy"`
}
type Config struct {
Addr string `json:"ServerAddr"`
Port uint16 `json:"Port"`
GateModel string `json:"GateModel"`
AuthKey string `json:"AuthKey"`
ReusePort bool `json:"ReusePort"`
MaxPacket int `json:"MaxPacket"`
MemPoolType string `json:"MemPoolType"`
MemPoolFactor int `json:"MemPoolFactor"`
MemPoolMinChunk int `json:"MemPoolMinChunk"`
MemPoolMaxChunk int `json:"MemPoolMaxChunk"`
MemPoolPageSize int `json:"MemPoolPageSize"`
ClientMaxConn int `json:"ClientMaxConn"`
ClientBufferSize int `json:"ClientBufferSize"`
ClientSendChanSize int `json:"ClientSendChanSize"`
Proxys []*Proxy `json:"Proxys"`
}
var gConf Config
const (
GateModelsServer string = "gs"
GateModelsClient string = "gc"
)
func init() {
loadConfig("./conf.json", &gConf)
}
func loadConfig(file string, o interface{}) {
reg, e := regexp.Compile("//(.*)")
if e != nil {
panic(e)
}
raw, err := ioutil.ReadFile(file)
//json 没有注释,对json进行//注释处理
raw = reg.ReplaceAll(raw, []byte{})
if err != nil {
panic(err)
}
err = json.Unmarshal(raw, o)
if err != nil {
panic(err)
}
}