├── .gitignore ├── .gitlab-ci.yml ├── LICENSE ├── Makefile ├── README.md ├── authorizer ├── authorizer_test.go ├── endpoint.go └── handler.go ├── client ├── client.go ├── gateway.go ├── gateway_test.go ├── mockServer_test.go ├── notificationBot.go ├── notificationBot_test.go ├── notificationsV2.go ├── notificationsV2_test.go ├── registration.go ├── registration_test.go ├── serverStream.go ├── ud.go └── ud_test.go ├── clientregistrar ├── clientregistrar_test.go ├── endpoint.go └── handler.go ├── gateway ├── authorizer.go ├── authorizer_test.go ├── batch.go ├── batch_test.go ├── broadcast.go ├── broadcast_test.go ├── endpoint.go ├── gateway_test.go ├── getPermissioningAddress.go ├── getPermissioningAddress_test.go ├── handler.go ├── notifications.go ├── notifications_test.go ├── proxy.go ├── proxy_test.go ├── registration.go └── registration_test.go ├── go.mod ├── go.sum ├── mixmessages ├── README.md ├── clientError.go ├── digest.go ├── digesttesthelper.go ├── generateProto.sh ├── google │ └── protobuf │ │ └── any.proto ├── mixmessages.pb.go ├── mixmessages.proto ├── mixmessages_grpc.pb.go ├── ndf.go ├── ndf_test.go ├── notifications.go ├── notifications_test.go ├── permissioningPoll.go ├── permissioningPoll_test.go ├── roundError.go ├── roundError_test.go ├── roundInfo.go ├── roundInfo_test.go ├── sharePiece.go ├── sharePiece_test.go └── utils.go ├── network ├── dataStructures │ ├── circuit.go │ ├── circuit_test.go │ ├── extendedRoundStorage.go │ ├── group.go │ ├── group_test.go │ ├── ipOverride.go │ ├── ipOverride_test.go │ ├── ndf.go │ ├── ndf_test.go │ ├── round.go │ ├── roundData.go │ ├── roundData_test.go │ ├── roundEvents.go │ ├── roundEvents_test.go │ ├── roundUpdates.go │ ├── roundUpdates_test.go │ ├── round_test.go │ ├── waitingRounds.go │ └── waitingRounds_test.go ├── historicalRoundData.go ├── historicalRoundData_test.go ├── instance.go ├── instance_test.go ├── securedNdf.go ├── securedNdf_test.go ├── slotDigest.go ├── slotDigest_test.go └── validation.go ├── node ├── batch.go ├── broadcast.go ├── endpoint.go ├── finishRealtime.go ├── handler.go ├── handler_test.go ├── messageInfo.go ├── node_test.go ├── phase.go ├── phase_test.go ├── register.go ├── register_test.go └── send_test.go ├── notificationBot ├── broadcast.go ├── endpoint.go ├── handler.go ├── notificationBot_test.go ├── poll.go └── registerNotification_test.go ├── publicAddress ├── getAddress.go ├── getAddress_test.go ├── ipLookupServices.go ├── ipLookupServices_test.go ├── override.go └── override_test.go ├── registration ├── endpoint.go ├── handler.go └── registration_test.go ├── remoteSync ├── client │ ├── broadcast.go │ └── client.go └── server │ ├── endpoint.go │ └── handler.go ├── testkeys ├── cmix.rip.crt ├── cmix.rip.key ├── gateway.cmix.rip.crt ├── gateway.cmix.rip.key ├── keypath.go └── keys.go ├── testutils ├── ndf.go └── utils.go └── udb ├── endpoint.go ├── handler.go ├── poll.go └── udb_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/README.md -------------------------------------------------------------------------------- /authorizer/authorizer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/authorizer/authorizer_test.go -------------------------------------------------------------------------------- /authorizer/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/authorizer/endpoint.go -------------------------------------------------------------------------------- /authorizer/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/authorizer/handler.go -------------------------------------------------------------------------------- /client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/client/client.go -------------------------------------------------------------------------------- /client/gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/client/gateway.go -------------------------------------------------------------------------------- /client/gateway_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/client/gateway_test.go -------------------------------------------------------------------------------- /client/mockServer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/client/mockServer_test.go -------------------------------------------------------------------------------- /client/notificationBot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/client/notificationBot.go -------------------------------------------------------------------------------- /client/notificationBot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/client/notificationBot_test.go -------------------------------------------------------------------------------- /client/notificationsV2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/client/notificationsV2.go -------------------------------------------------------------------------------- /client/notificationsV2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/client/notificationsV2_test.go -------------------------------------------------------------------------------- /client/registration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/client/registration.go -------------------------------------------------------------------------------- /client/registration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/client/registration_test.go -------------------------------------------------------------------------------- /client/serverStream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/client/serverStream.go -------------------------------------------------------------------------------- /client/ud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/client/ud.go -------------------------------------------------------------------------------- /client/ud_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/client/ud_test.go -------------------------------------------------------------------------------- /clientregistrar/clientregistrar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/clientregistrar/clientregistrar_test.go -------------------------------------------------------------------------------- /clientregistrar/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/clientregistrar/endpoint.go -------------------------------------------------------------------------------- /clientregistrar/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/clientregistrar/handler.go -------------------------------------------------------------------------------- /gateway/authorizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/gateway/authorizer.go -------------------------------------------------------------------------------- /gateway/authorizer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/gateway/authorizer_test.go -------------------------------------------------------------------------------- /gateway/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/gateway/batch.go -------------------------------------------------------------------------------- /gateway/batch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/gateway/batch_test.go -------------------------------------------------------------------------------- /gateway/broadcast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/gateway/broadcast.go -------------------------------------------------------------------------------- /gateway/broadcast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/gateway/broadcast_test.go -------------------------------------------------------------------------------- /gateway/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/gateway/endpoint.go -------------------------------------------------------------------------------- /gateway/gateway_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/gateway/gateway_test.go -------------------------------------------------------------------------------- /gateway/getPermissioningAddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/gateway/getPermissioningAddress.go -------------------------------------------------------------------------------- /gateway/getPermissioningAddress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/gateway/getPermissioningAddress_test.go -------------------------------------------------------------------------------- /gateway/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/gateway/handler.go -------------------------------------------------------------------------------- /gateway/notifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/gateway/notifications.go -------------------------------------------------------------------------------- /gateway/notifications_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/gateway/notifications_test.go -------------------------------------------------------------------------------- /gateway/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/gateway/proxy.go -------------------------------------------------------------------------------- /gateway/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/gateway/proxy_test.go -------------------------------------------------------------------------------- /gateway/registration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/gateway/registration.go -------------------------------------------------------------------------------- /gateway/registration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/gateway/registration_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/go.sum -------------------------------------------------------------------------------- /mixmessages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/mixmessages/README.md -------------------------------------------------------------------------------- /mixmessages/clientError.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/mixmessages/clientError.go -------------------------------------------------------------------------------- /mixmessages/digest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/mixmessages/digest.go -------------------------------------------------------------------------------- /mixmessages/digesttesthelper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/mixmessages/digesttesthelper.go -------------------------------------------------------------------------------- /mixmessages/generateProto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/mixmessages/generateProto.sh -------------------------------------------------------------------------------- /mixmessages/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/mixmessages/google/protobuf/any.proto -------------------------------------------------------------------------------- /mixmessages/mixmessages.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/mixmessages/mixmessages.pb.go -------------------------------------------------------------------------------- /mixmessages/mixmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/mixmessages/mixmessages.proto -------------------------------------------------------------------------------- /mixmessages/mixmessages_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/mixmessages/mixmessages_grpc.pb.go -------------------------------------------------------------------------------- /mixmessages/ndf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/mixmessages/ndf.go -------------------------------------------------------------------------------- /mixmessages/ndf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/mixmessages/ndf_test.go -------------------------------------------------------------------------------- /mixmessages/notifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/mixmessages/notifications.go -------------------------------------------------------------------------------- /mixmessages/notifications_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/mixmessages/notifications_test.go -------------------------------------------------------------------------------- /mixmessages/permissioningPoll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/mixmessages/permissioningPoll.go -------------------------------------------------------------------------------- /mixmessages/permissioningPoll_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/mixmessages/permissioningPoll_test.go -------------------------------------------------------------------------------- /mixmessages/roundError.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/mixmessages/roundError.go -------------------------------------------------------------------------------- /mixmessages/roundError_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/mixmessages/roundError_test.go -------------------------------------------------------------------------------- /mixmessages/roundInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/mixmessages/roundInfo.go -------------------------------------------------------------------------------- /mixmessages/roundInfo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/mixmessages/roundInfo_test.go -------------------------------------------------------------------------------- /mixmessages/sharePiece.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/mixmessages/sharePiece.go -------------------------------------------------------------------------------- /mixmessages/sharePiece_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/mixmessages/sharePiece_test.go -------------------------------------------------------------------------------- /mixmessages/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/mixmessages/utils.go -------------------------------------------------------------------------------- /network/dataStructures/circuit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/dataStructures/circuit.go -------------------------------------------------------------------------------- /network/dataStructures/circuit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/dataStructures/circuit_test.go -------------------------------------------------------------------------------- /network/dataStructures/extendedRoundStorage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/dataStructures/extendedRoundStorage.go -------------------------------------------------------------------------------- /network/dataStructures/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/dataStructures/group.go -------------------------------------------------------------------------------- /network/dataStructures/group_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/dataStructures/group_test.go -------------------------------------------------------------------------------- /network/dataStructures/ipOverride.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/dataStructures/ipOverride.go -------------------------------------------------------------------------------- /network/dataStructures/ipOverride_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/dataStructures/ipOverride_test.go -------------------------------------------------------------------------------- /network/dataStructures/ndf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/dataStructures/ndf.go -------------------------------------------------------------------------------- /network/dataStructures/ndf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/dataStructures/ndf_test.go -------------------------------------------------------------------------------- /network/dataStructures/round.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/dataStructures/round.go -------------------------------------------------------------------------------- /network/dataStructures/roundData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/dataStructures/roundData.go -------------------------------------------------------------------------------- /network/dataStructures/roundData_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/dataStructures/roundData_test.go -------------------------------------------------------------------------------- /network/dataStructures/roundEvents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/dataStructures/roundEvents.go -------------------------------------------------------------------------------- /network/dataStructures/roundEvents_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/dataStructures/roundEvents_test.go -------------------------------------------------------------------------------- /network/dataStructures/roundUpdates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/dataStructures/roundUpdates.go -------------------------------------------------------------------------------- /network/dataStructures/roundUpdates_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/dataStructures/roundUpdates_test.go -------------------------------------------------------------------------------- /network/dataStructures/round_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/dataStructures/round_test.go -------------------------------------------------------------------------------- /network/dataStructures/waitingRounds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/dataStructures/waitingRounds.go -------------------------------------------------------------------------------- /network/dataStructures/waitingRounds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/dataStructures/waitingRounds_test.go -------------------------------------------------------------------------------- /network/historicalRoundData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/historicalRoundData.go -------------------------------------------------------------------------------- /network/historicalRoundData_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/historicalRoundData_test.go -------------------------------------------------------------------------------- /network/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/instance.go -------------------------------------------------------------------------------- /network/instance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/instance_test.go -------------------------------------------------------------------------------- /network/securedNdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/securedNdf.go -------------------------------------------------------------------------------- /network/securedNdf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/securedNdf_test.go -------------------------------------------------------------------------------- /network/slotDigest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/slotDigest.go -------------------------------------------------------------------------------- /network/slotDigest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/slotDigest_test.go -------------------------------------------------------------------------------- /network/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/network/validation.go -------------------------------------------------------------------------------- /node/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/node/batch.go -------------------------------------------------------------------------------- /node/broadcast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/node/broadcast.go -------------------------------------------------------------------------------- /node/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/node/endpoint.go -------------------------------------------------------------------------------- /node/finishRealtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/node/finishRealtime.go -------------------------------------------------------------------------------- /node/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/node/handler.go -------------------------------------------------------------------------------- /node/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/node/handler_test.go -------------------------------------------------------------------------------- /node/messageInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/node/messageInfo.go -------------------------------------------------------------------------------- /node/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/node/node_test.go -------------------------------------------------------------------------------- /node/phase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/node/phase.go -------------------------------------------------------------------------------- /node/phase_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/node/phase_test.go -------------------------------------------------------------------------------- /node/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/node/register.go -------------------------------------------------------------------------------- /node/register_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/node/register_test.go -------------------------------------------------------------------------------- /node/send_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/node/send_test.go -------------------------------------------------------------------------------- /notificationBot/broadcast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/notificationBot/broadcast.go -------------------------------------------------------------------------------- /notificationBot/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/notificationBot/endpoint.go -------------------------------------------------------------------------------- /notificationBot/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/notificationBot/handler.go -------------------------------------------------------------------------------- /notificationBot/notificationBot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/notificationBot/notificationBot_test.go -------------------------------------------------------------------------------- /notificationBot/poll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/notificationBot/poll.go -------------------------------------------------------------------------------- /notificationBot/registerNotification_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/notificationBot/registerNotification_test.go -------------------------------------------------------------------------------- /publicAddress/getAddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/publicAddress/getAddress.go -------------------------------------------------------------------------------- /publicAddress/getAddress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/publicAddress/getAddress_test.go -------------------------------------------------------------------------------- /publicAddress/ipLookupServices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/publicAddress/ipLookupServices.go -------------------------------------------------------------------------------- /publicAddress/ipLookupServices_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/publicAddress/ipLookupServices_test.go -------------------------------------------------------------------------------- /publicAddress/override.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/publicAddress/override.go -------------------------------------------------------------------------------- /publicAddress/override_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/publicAddress/override_test.go -------------------------------------------------------------------------------- /registration/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/registration/endpoint.go -------------------------------------------------------------------------------- /registration/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/registration/handler.go -------------------------------------------------------------------------------- /registration/registration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/registration/registration_test.go -------------------------------------------------------------------------------- /remoteSync/client/broadcast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/remoteSync/client/broadcast.go -------------------------------------------------------------------------------- /remoteSync/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/remoteSync/client/client.go -------------------------------------------------------------------------------- /remoteSync/server/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/remoteSync/server/endpoint.go -------------------------------------------------------------------------------- /remoteSync/server/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/remoteSync/server/handler.go -------------------------------------------------------------------------------- /testkeys/cmix.rip.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/testkeys/cmix.rip.crt -------------------------------------------------------------------------------- /testkeys/cmix.rip.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/testkeys/cmix.rip.key -------------------------------------------------------------------------------- /testkeys/gateway.cmix.rip.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/testkeys/gateway.cmix.rip.crt -------------------------------------------------------------------------------- /testkeys/gateway.cmix.rip.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/testkeys/gateway.cmix.rip.key -------------------------------------------------------------------------------- /testkeys/keypath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/testkeys/keypath.go -------------------------------------------------------------------------------- /testkeys/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/testkeys/keys.go -------------------------------------------------------------------------------- /testutils/ndf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/testutils/ndf.go -------------------------------------------------------------------------------- /testutils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/testutils/utils.go -------------------------------------------------------------------------------- /udb/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/udb/endpoint.go -------------------------------------------------------------------------------- /udb/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/udb/handler.go -------------------------------------------------------------------------------- /udb/poll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/udb/poll.go -------------------------------------------------------------------------------- /udb/udb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxfoundation/elixxir-comms/HEAD/udb/udb_test.go --------------------------------------------------------------------------------