aboutsummaryrefslogtreecommitdiffstats
path: root/c_lhosts.go
diff options
context:
space:
mode:
authorJoe <rbo@gmx.us>2023-12-19 20:20:20 +0100
committerJoe <rbo@gmx.us>2023-12-19 20:20:20 +0100
commitb9a79ec3d1c2dc1b90924477501a4470e57f9c01 (patch)
tree7d49f94f957beecbccc9b97cd91d8a36b647d914 /c_lhosts.go
parentup (diff)
downloadhardflip-b9a79ec3d1c2dc1b90924477501a4470e57f9c01.tar.gz
hardflip-b9a79ec3d1c2dc1b90924477501a4470e57f9c01.tar.bz2
hardflip-b9a79ec3d1c2dc1b90924477501a4470e57f9c01.tar.xz
hardflip-b9a79ec3d1c2dc1b90924477501a4470e57f9c01.tar.zst
hardflip-b9a79ec3d1c2dc1b90924477501a4470e57f9c01.zip
go
Diffstat (limited to '')
-rw-r--r--c_lhosts.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/c_lhosts.go b/c_lhosts.go
index d98305c..c556fd5 100644
--- a/c_lhosts.go
+++ b/c_lhosts.go
@@ -39,7 +39,7 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* hardflip: src/c_lhosts.go
- * Fri, 15 Dec 2023 17:26:58 +0100
+ * Tue, 19 Dec 2023 11:32:56 +0100
* Joe
*
* the hosts linked list
@@ -63,10 +63,14 @@ type HostNode struct {
JumpUser string `yaml:"jump_user"`
JumpPass string `yaml:"jump_pass"`
JumpPriv string `yaml:"jump_priv"`
+ Quality string `yaml:"quality"`
+ Domain string `yaml:"domain"`
+ Width uint16 `yaml:"width"`
+ Height uint16 `yaml:"height"`
Note string `yaml:"note"`
Filename string
Folder string
- next *HostNode
+ next *HostNode
}
type HostList struct {