瀏覽代碼

Debug_Output now works using "Debug" in json.

Steve Thielemann 2 年之前
父節點
當前提交
045df1292b
共有 1 個文件被更改,包括 17 次插入17 次删除
  1. 17 17
      irc-client.go

+ 17 - 17
irc-client.go

@@ -44,23 +44,23 @@ type IRCWrite struct {
 }
 
 type IRCConfig struct {
-	Port           int      `json: Port`
-	Hostname       string   `json: Hostname`
-	UseTLS         bool     `json: UseTLS`   // Use TLS Secure connection
-	UseSASL        bool     `json: UseSASL`  // Authenticate via SASL
-	Insecure       bool     `json: Insecure` // Allow self-signed certificates
-	Nick           string   `json: Nick`
-	Username       string   `json: Username`
-	Realname       string   `json: Realname`
-	Password       string   `json: Password`       // Password for nickserv
-	ServerPassword string   `json: ServerPassword` // Password for server
-	AutoJoin       []string `json: AutoJoin`       // Channels to auto-join
-	RejoinDelay    int      `json: RejoinDelay`    // ms to rejoin
-	Version        string   `json: Version`        // Version displayed
-	Flood_Num      int      `json: FloodNum`       // Number of lines sent before considered a flood
-	Flood_Time     int      `json: FloodTime`      // Number of Seconds to track previous messages
-	Flood_Delay    int      `json: FloodDelay`     // Delay between sending when flood protection on (Milliseconds)
-	Debug_Output   bool     `json: Debug`
+	Port           int      `json:"Port"`
+	Hostname       string   `json:"Hostname"`
+	UseTLS         bool     `json:"UseTLS"`   // Use TLS Secure connection
+	UseSASL        bool     `json:"UseSASL"`  // Authenticate via SASL
+	Insecure       bool     `json:"Insecure"` // Allow self-signed certificates
+	Nick           string   `json:"Nick"`
+	Username       string   `json:"Username"`
+	Realname       string   `json:"Realname"`
+	Password       string   `json:"Password"`       // Password for nickserv
+	ServerPassword string   `json:"ServerPassword"` // Password for server
+	AutoJoin       []string `json:"AutoJoin"`       // Channels to auto-join
+	RejoinDelay    int      `json:"RejoinDelay"`    // ms to rejoin
+	Version        string   `json:"Version"`        // Version displayed
+	Flood_Num      int      `json:"FloodNum"`       // Number of lines sent before considered a flood
+	Flood_Time     int      `json:"FloodTime"`      // Number of Seconds to track previous messages
+	Flood_Delay    int      `json:"FloodDelay"`     // Delay between sending when flood protection on (Milliseconds)
+	Debug_Output   bool     `json:"Debug"`
 	MyNick         string
 	OnExit         func()
 	Socket         net.Conn