port

open override fun port(virtual: Port): BuilderScopeHS(source)

Configure a TorOption.HiddenServicePort with no "target". In this event, the "target" will be the same as virtual.

e.g.

port(virtual = Port.HTTP)
// HiddenServicePort 80 80

See also


open override fun port(virtual: Port, block: ThisBlock<BuilderScopeHSPort>): BuilderScopeHS(source)

Configure a TorOption.HiddenServicePort with a specified virtual port and configure other options.

e.g.

port(virtual = Port.HTTP) {
    target(port = 8080.toPort())
}
// HiddenServicePort 80 8080

See also