add dests to client searches
This commit is contained in:
1
Makefile
1
Makefile
@ -31,7 +31,6 @@ test-manager:
|
||||
cd manager && go test
|
||||
|
||||
try-web:
|
||||
make webdep daemon-web
|
||||
cd bin && \
|
||||
./samcatd-web -w -f ../etc/samcatd/tunnels.ini
|
||||
|
||||
|
@ -81,12 +81,12 @@ I'm eventually going to make the manager implement net.Conn. This won't be
|
||||
exposed in the default application probably though, but rather as a library.
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQEzBAEBCAAdFiEEcNIGBzi++AUjrK/311wDs5teFOEFAluip5sACgkQ11wDs5te
|
||||
FOHnBwf/RDBXXpzR2CnD+syqEHbMyn6237wulxZFztpMgx6Sh5WyaM+IRMbj8rw+
|
||||
Zy1BYReZP4ea186XaRnt0FbAnnQa7uL0oxu+gJf8FnJJTSArUogcFLB+xCyPieqZ
|
||||
jRWbEJ4BccoksFpejUCJ+5X97/V02r3BeUCB99ZULWvQZ2KezH/CTQWx6fXeEsyK
|
||||
FG0kiOzpXhbkMAdVlog1Fe8LOHb/OL8wucJmJm1z4OrwZjuzXuaBitXgd4dsb/Tv
|
||||
HMqZa9aETVNjmsbtrep7aq0f09wcjRBYTyqJxF/ayR5ua8P9PMBu38BNdGJJhgPm
|
||||
8015oqmG6R5IiiTURjCo2LvhZRfl2A==
|
||||
=xsoK
|
||||
iQEzBAEBCAAdFiEEcNIGBzi++AUjrK/311wDs5teFOEFAluivlAACgkQ11wDs5te
|
||||
FOHINwf/Ze6hsVQzAuxORn/Roxeh18FKuG9lZ+0QJyxiiWQo3laB0uTXRgNZf0H6
|
||||
Om+cOtJ7whxZs95OTv2dwlpmyUHEsu4lLk2lnWUxGupznMZjHfB5NEm+wE/uVSrY
|
||||
4U0g43qd2Yj/NVXcM87bePoTszO140A7ztY8QLMcKCViG/muF/zDP/KRYqAhve1T
|
||||
9J1+kgiQzboq1yL0LgLZM1Kb+auh7l/dScIjTleKQb1s4rFo6tMBNK2hu9BCtxHd
|
||||
AlBtGHtben176Xh7VBWZDeAgh/5xJKMdfZNmI8KxzO54D0rt0qGLPH66a4OHB5sd
|
||||
vTCPzv0B3hBCnuTUUrBfxR+qvhq6yQ==
|
||||
=UcNh
|
||||
-----END PGP SIGNATURE-----
|
||||
|
@ -35,7 +35,7 @@ keyfile = "/usr/share/samcatd/samcatd"
|
||||
type = client
|
||||
host = 127.0.0.1
|
||||
port = 8082
|
||||
inbound.length = 6
|
||||
inbound.length = 3
|
||||
outbound.length = 3
|
||||
destination = i2p-projekt.i2p
|
||||
keys = forwarder-two
|
||||
|
@ -102,6 +102,7 @@ func (f *SAMClientForwarder) Print() string {
|
||||
r += "type=" + f.Type + "\n"
|
||||
r += "base32=" + f.Base32() + "\n"
|
||||
r += "base64=" + f.Base64() + "\n"
|
||||
r += "destbase32=" + dest + ".b32.i2p\n"
|
||||
r += "ntcpclient\n"
|
||||
for _, s := range f.print() {
|
||||
r += s + "\n"
|
||||
|
@ -103,6 +103,7 @@ func (f *SAMSSUClientForwarder) Print() string {
|
||||
r += "type=" + f.Type + "\n"
|
||||
r += "base32=" + f.Base32() + "\n"
|
||||
r += "base64=" + f.Base64() + "\n"
|
||||
r += "destbase32=" + dest + ".b32.i2p\n"
|
||||
r += "ssuclient\n"
|
||||
for _, s := range f.print() {
|
||||
r += s + "\n"
|
||||
|
Reference in New Issue
Block a user