瀏覽代碼

Fixes #5. Don't json things that shouldn't be.

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

+ 29 - 29
irc-client.go

@@ -146,35 +146,35 @@ 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"`
-	MyNick         string
-	OnExit         func()
-	Socket         net.Conn
-	Reader         *bufio.Reader
-	ReadChannel    chan IRCMsg
-	ReadEvents     []string
-	WriteChannel   chan IRCWrite
-	DelChannel     chan string
-	Registered     bool
-	ISupport       map[string]string // 005
-	wg             sync.WaitGroup
-	Mutex          sync.Mutex
+	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            `json:"-"`
+	OnExit         func()            `json:"-"`
+	Socket         net.Conn          `json:"-"`
+	Reader         *bufio.Reader     `json:"-"`
+	ReadChannel    chan IRCMsg       `json:"-"`
+	ReadEvents     []string          `json:"-"`
+	WriteChannel   chan IRCWrite     `json:"-"`
+	DelChannel     chan string       `json:"-"`
+	Registered     bool              `json:"-"`
+	ISupport       map[string]string `json:"-"` // 005
+	wg             sync.WaitGroup    `json:"-"`
+	Mutex          sync.Mutex        `json:"-"`
 }
 
 func (Config *IRCConfig) GetNick() string {