├── README.md ├── bin ├── cable-id ├── cable-info ├── cable-ping ├── cable-send ├── gen-cable-username ├── gen-i2p-hostname └── gen-tor-hostname ├── cable ├── cabled ├── cms ├── comm ├── crypto ├── fetch ├── loop ├── send └── validate ├── conf ├── cabled ├── extensions.cnf ├── profile └── rfc3526-modp-18.pem ├── doc └── cable.txt ├── makefile ├── pkg └── cables-x.y.ebuild ├── share └── cable-info.desktop ├── src ├── daemon.c ├── daemon.h ├── hex2base32.c ├── mhdrop.c ├── process.c ├── process.h ├── server.c ├── server.h ├── service.c ├── service.h ├── su │ └── dee │ │ └── i2p │ │ └── EepPriv.java ├── util.c └── util.h └── test ├── curl ├── logger ├── oakley-group-2.pem └── simulate /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/README.md -------------------------------------------------------------------------------- /bin/cable-id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/bin/cable-id -------------------------------------------------------------------------------- /bin/cable-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/bin/cable-info -------------------------------------------------------------------------------- /bin/cable-ping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/bin/cable-ping -------------------------------------------------------------------------------- /bin/cable-send: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/bin/cable-send -------------------------------------------------------------------------------- /bin/gen-cable-username: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/bin/gen-cable-username -------------------------------------------------------------------------------- /bin/gen-i2p-hostname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/bin/gen-i2p-hostname -------------------------------------------------------------------------------- /bin/gen-tor-hostname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/bin/gen-tor-hostname -------------------------------------------------------------------------------- /cable/cabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/cable/cabled -------------------------------------------------------------------------------- /cable/cms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/cable/cms -------------------------------------------------------------------------------- /cable/comm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/cable/comm -------------------------------------------------------------------------------- /cable/crypto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/cable/crypto -------------------------------------------------------------------------------- /cable/fetch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/cable/fetch -------------------------------------------------------------------------------- /cable/loop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/cable/loop -------------------------------------------------------------------------------- /cable/send: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/cable/send -------------------------------------------------------------------------------- /cable/validate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/cable/validate -------------------------------------------------------------------------------- /conf/cabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/conf/cabled -------------------------------------------------------------------------------- /conf/extensions.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/conf/extensions.cnf -------------------------------------------------------------------------------- /conf/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/conf/profile -------------------------------------------------------------------------------- /conf/rfc3526-modp-18.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/conf/rfc3526-modp-18.pem -------------------------------------------------------------------------------- /doc/cable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/doc/cable.txt -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/makefile -------------------------------------------------------------------------------- /pkg/cables-x.y.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/pkg/cables-x.y.ebuild -------------------------------------------------------------------------------- /share/cable-info.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/share/cable-info.desktop -------------------------------------------------------------------------------- /src/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/src/daemon.c -------------------------------------------------------------------------------- /src/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/src/daemon.h -------------------------------------------------------------------------------- /src/hex2base32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/src/hex2base32.c -------------------------------------------------------------------------------- /src/mhdrop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/src/mhdrop.c -------------------------------------------------------------------------------- /src/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/src/process.c -------------------------------------------------------------------------------- /src/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/src/process.h -------------------------------------------------------------------------------- /src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/src/server.c -------------------------------------------------------------------------------- /src/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/src/server.h -------------------------------------------------------------------------------- /src/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/src/service.c -------------------------------------------------------------------------------- /src/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/src/service.h -------------------------------------------------------------------------------- /src/su/dee/i2p/EepPriv.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/src/su/dee/i2p/EepPriv.java -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/src/util.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/src/util.h -------------------------------------------------------------------------------- /test/curl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/test/curl -------------------------------------------------------------------------------- /test/logger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/test/logger -------------------------------------------------------------------------------- /test/oakley-group-2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/test/oakley-group-2.pem -------------------------------------------------------------------------------- /test/simulate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkdesu/cables/HEAD/test/simulate --------------------------------------------------------------------------------