50f4836e44
Added the hostname of the public server in order to send ICCC messages over TLS and HTTP/2
12 lines
341 B
Go
12 lines
341 B
Go
package Scheme
|
|
|
|
// Type for the listener entries at the database.
|
|
type Listener struct {
|
|
Channel string `bson:"Channel"`
|
|
Command string `bson:"Command"`
|
|
IsActive bool `bson:"IsActive"`
|
|
IPAddressPort string `bson:"IPAddressPort"`
|
|
Kind byte `bson:"Kind"`
|
|
Hostname string `bson:"Hostname"`
|
|
}
|