From 5f8407a37f17e8ac88c2fc9d2d76cae9b694dd11 Mon Sep 17 00:00:00 2001 From: Akilan Date: Thu, 24 Apr 2025 23:28:19 +0100 Subject: [PATCH] added comment --- abstractions/base.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/abstractions/base.go b/abstractions/base.go index 1eccb61..f009c56 100644 --- a/abstractions/base.go +++ b/abstractions/base.go @@ -87,6 +87,9 @@ func UpdateIPTable() (err error) { return clientIPTable.UpdateIpTableListClient() } +// AddCustomInformation allows to pass custom information +// through the network to which can be listened on +// all peers in the network to execute a task. func AddCustomInformation(information string) error { return clientIPTable.AddCustomInformationToIPTable(information) }