|
@@ -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
|