aboutsummaryrefslogtreecommitdiffstats
path: root/c_lhosts.go
diff options
context:
space:
mode:
authorJoe <rbo@gmx.us>2024-01-04 20:20:20 +0100
committerJoe <rbo@gmx.us>2024-01-04 20:20:20 +0100
commit6149c669d1f8da881a58879bc54220be6d25e555 (patch)
tree0eb7ca76892454112cc0d6f279ea0d8749b1e9ca /c_lhosts.go
parentunique id maybe? (diff)
downloadhardflip-6149c669d1f8da881a58879bc54220be6d25e555.tar.gz
hardflip-6149c669d1f8da881a58879bc54220be6d25e555.tar.bz2
hardflip-6149c669d1f8da881a58879bc54220be6d25e555.tar.xz
hardflip-6149c669d1f8da881a58879bc54220be6d25e555.tar.zst
hardflip-6149c669d1f8da881a58879bc54220be6d25e555.zip
ok this is great
Diffstat (limited to '')
-rw-r--r--c_lhosts.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/c_lhosts.go b/c_lhosts.go
index 6e7ea77..0b7f702 100644
--- a/c_lhosts.go
+++ b/c_lhosts.go
@@ -152,3 +152,15 @@ func (lhost *HostList) count() uint64 {
}
return count
}
+
+func (host *HostNode) is_dir() bool {
+ return false
+}
+
+func (host *HostNode) get_id() uint64 {
+ return host.ID
+}
+
+func (host *HostNode) get_next() *HostNode {
+ return host.next
+}