├── .gitignore ├── .travis.yml ├── README.md ├── core ├── address.go ├── config │ └── config.go ├── contact-protocol.go ├── contact.go ├── contactlist.go ├── conversation.go ├── identity.go ├── inboundcontactrequest.go ├── network.go ├── onionconnector.go ├── ricochet.go ├── rpcserver.go ├── sanitize.go └── utils │ ├── misc.go │ └── publisher.go ├── ricochet-cli ├── client.go ├── contact.go ├── conversation.go ├── innernet.go ├── main.go └── ui.go ├── rpc ├── config.pb.go ├── config.proto ├── contact.pb.go ├── contact.proto ├── conversation.pb.go ├── conversation.proto ├── core.pb.go ├── core.proto ├── identity.pb.go ├── identity.proto ├── network.pb.go ├── network.proto └── rpc.go └── vendor ├── cloud.google.com └── go │ ├── compute │ └── metadata │ │ ├── LICENSE │ │ └── metadata.go │ └── internal │ ├── LICENSE │ ├── cloud.go │ ├── fields │ ├── fields.go │ └── fold.go │ ├── optional │ └── optional.go │ ├── pretty │ ├── diff.go │ └── pretty.go │ ├── retry.go │ └── testutil │ ├── context.go │ └── server.go ├── github.com ├── chzyer │ └── readline │ │ ├── LICENSE │ │ ├── ansi_windows.go │ │ ├── complete.go │ │ ├── complete_helper.go │ │ ├── complete_segment.go │ │ ├── example │ │ ├── readline-demo │ │ │ └── readline-demo.go │ │ ├── readline-im │ │ │ └── readline-im.go │ │ ├── readline-multiline │ │ │ └── readline-multiline.go │ │ ├── readline-pass-strength │ │ │ └── readline-pass-strength.go │ │ └── readline-remote │ │ │ ├── readline-remote-client │ │ │ └── client.go │ │ │ └── readline-remote-server │ │ │ └── server.go │ │ ├── history.go │ │ ├── operation.go │ │ ├── password.go │ │ ├── rawreader_windows.go │ │ ├── readline.go │ │ ├── remote.go │ │ ├── runebuf.go │ │ ├── runes.go │ │ ├── runes │ │ └── runes.go │ │ ├── search.go │ │ ├── std.go │ │ ├── std_windows.go │ │ ├── term.go │ │ ├── term_bsd.go │ │ ├── term_linux.go │ │ ├── term_solaris.go │ │ ├── term_unix.go │ │ ├── term_windows.go │ │ ├── terminal.go │ │ ├── utils.go │ │ ├── utils_unix.go │ │ ├── utils_windows.go │ │ ├── vim.go │ │ └── windows_api.go ├── golang │ ├── glog │ │ ├── LICENSE │ │ ├── glog.go │ │ └── glog_file.go │ └── protobuf │ │ ├── LICENSE │ │ ├── descriptor │ │ └── descriptor.go │ │ ├── jsonpb │ │ ├── jsonpb.go │ │ └── jsonpb_test_proto │ │ │ ├── more_test_objects.pb.go │ │ │ └── test_objects.pb.go │ │ ├── proto │ │ ├── clone.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── lib.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_unsafe.go │ │ ├── properties.go │ │ ├── proto3_proto │ │ │ └── proto3.pb.go │ │ ├── text.go │ │ └── text_parser.go │ │ ├── protoc-gen-go │ │ ├── descriptor │ │ │ └── descriptor.pb.go │ │ ├── doc.go │ │ ├── generator │ │ │ └── generator.go │ │ ├── grpc │ │ │ └── grpc.go │ │ ├── link_grpc.go │ │ ├── main.go │ │ └── plugin │ │ │ └── plugin.pb.go │ │ └── ptypes │ │ ├── any.go │ │ ├── any │ │ └── any.pb.go │ │ ├── doc.go │ │ ├── duration.go │ │ ├── duration │ │ └── duration.pb.go │ │ ├── empty │ │ └── empty.pb.go │ │ ├── struct │ │ └── struct.pb.go │ │ ├── timestamp.go │ │ ├── timestamp │ │ └── timestamp.pb.go │ │ └── wrappers │ │ └── wrappers.pb.go ├── googleapis │ └── gax-go │ │ ├── LICENSE │ │ ├── call_option.go │ │ ├── gax.go │ │ ├── invoke.go │ │ ├── path_template.go │ │ └── path_template_parser.go ├── nbutton23 │ └── zxcvbn-go │ │ ├── LICENSE.txt │ │ ├── adjacency │ │ └── adjcmartix.go │ │ ├── data │ │ └── bindata.go │ │ ├── entropy │ │ └── entropyCalculator.go │ │ ├── frequency │ │ └── frequency.go │ │ ├── match │ │ └── match.go │ │ ├── matching │ │ ├── dateMatchers.go │ │ ├── dictionaryMatch.go │ │ ├── leet.go │ │ ├── matching.go │ │ ├── repeatMatch.go │ │ ├── sequenceMatch.go │ │ └── spatialMatch.go │ │ ├── scoring │ │ └── scoring.go │ │ ├── testapp │ │ └── main.go │ │ ├── utils │ │ └── math │ │ │ └── mathutils.go │ │ ├── vendor │ │ └── github.com │ │ │ └── davecgh │ │ │ └── go-spew │ │ │ └── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── format.go │ │ │ └── spew.go │ │ └── zxcvbn.go ├── s-rah │ └── go-ricochet │ │ ├── LICENSE │ │ ├── application │ │ ├── acceptallcontactmanager.go │ │ ├── application.go │ │ ├── contactmanagerinterface.go │ │ ├── examples │ │ │ └── echobot │ │ │ │ └── main.go │ │ └── ricochetonion.go │ │ ├── channels │ │ ├── channel.go │ │ ├── chatchannel.go │ │ ├── contactrequestchannel.go │ │ ├── handler.go │ │ └── hiddenserviceauthchannel.go │ │ ├── connection │ │ ├── autoconnectionhandler.go │ │ ├── channelmanager.go │ │ ├── connection.go │ │ ├── handler.go │ │ ├── inboundconnectionhandler.go │ │ └── outboundconnectionhandler.go │ │ ├── examples │ │ └── echobot │ │ │ └── main.go │ │ ├── policies │ │ └── timeoutpolicy.go │ │ ├── ricochet.go │ │ ├── utils │ │ ├── crypto.go │ │ ├── error.go │ │ ├── messagebuilder.go │ │ ├── networking.go │ │ ├── networkresolver.go │ │ └── tor.go │ │ └── wire │ │ ├── auth │ │ └── auth_message.go │ │ ├── chat │ │ └── chat.go │ │ ├── contact │ │ └── request.go │ │ └── control │ │ └── control_message.go └── yawning │ └── bulb │ ├── LICENSE │ ├── cmd_authenticate.go │ ├── cmd_onion.go │ ├── cmd_protocolinfo.go │ ├── conn.go │ ├── dialer.go │ ├── examples │ ├── basic │ │ └── basic.go │ ├── dialer │ │ └── dialer.go │ └── listener │ │ └── listener.go │ ├── listener.go │ ├── response.go │ ├── status.go │ └── utils │ ├── pkcs1 │ └── rsa.go │ └── utils.go ├── go4.org └── syncutil │ └── singleflight │ ├── LICENSE │ └── singleflight.go ├── golang.org └── x │ ├── crypto │ ├── acme │ │ ├── LICENSE │ │ ├── acme.go │ │ ├── autocert │ │ │ ├── autocert.go │ │ │ ├── cache.go │ │ │ └── renewal.go │ │ ├── jws.go │ │ └── types.go │ └── ssh │ │ └── terminal │ │ ├── LICENSE │ │ ├── terminal.go │ │ ├── util.go │ │ ├── util_bsd.go │ │ ├── util_linux.go │ │ ├── util_plan9.go │ │ ├── util_solaris.go │ │ └── util_windows.go │ ├── net │ ├── context │ │ ├── LICENSE │ │ ├── context.go │ │ ├── ctxhttp │ │ │ ├── ctxhttp.go │ │ │ └── ctxhttp_pre17.go │ │ ├── go17.go │ │ └── pre_go17.go │ ├── http2 │ │ ├── LICENSE │ │ ├── client_conn_pool.go │ │ ├── configure_transport.go │ │ ├── errors.go │ │ ├── fixed_buffer.go │ │ ├── flow.go │ │ ├── frame.go │ │ ├── go16.go │ │ ├── go17.go │ │ ├── go17_not18.go │ │ ├── go18.go │ │ ├── gotrack.go │ │ ├── h2demo │ │ │ ├── h2demo.go │ │ │ └── launch.go │ │ ├── h2i │ │ │ └── h2i.go │ │ ├── headermap.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── hpack.go │ │ │ ├── huffman.go │ │ │ └── tables.go │ │ ├── http2.go │ │ ├── not_go16.go │ │ ├── not_go17.go │ │ ├── not_go18.go │ │ ├── pipe.go │ │ ├── server.go │ │ ├── transport.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority.go │ │ └── writesched_random.go │ ├── idna │ │ ├── LICENSE │ │ ├── idna.go │ │ └── punycode.go │ ├── internal │ │ └── timeseries │ │ │ ├── LICENSE │ │ │ └── timeseries.go │ ├── lex │ │ └── httplex │ │ │ ├── LICENSE │ │ │ └── httplex.go │ ├── proxy │ │ ├── LICENSE │ │ ├── direct.go │ │ ├── per_host.go │ │ ├── proxy.go │ │ └── socks5.go │ └── trace │ │ ├── LICENSE │ │ ├── events.go │ │ ├── histogram.go │ │ └── trace.go │ ├── oauth2 │ ├── LICENSE │ ├── bitbucket │ │ └── bitbucket.go │ ├── client_appengine.go │ ├── clientcredentials │ │ └── clientcredentials.go │ ├── facebook │ │ └── facebook.go │ ├── fitbit │ │ └── fitbit.go │ ├── foursquare │ │ └── foursquare.go │ ├── github │ │ └── github.go │ ├── google │ │ ├── appengine.go │ │ ├── appengine_hook.go │ │ ├── appenginevm_hook.go │ │ ├── default.go │ │ ├── google.go │ │ ├── jwt.go │ │ └── sdk.go │ ├── heroku │ │ └── heroku.go │ ├── hipchat │ │ └── hipchat.go │ ├── internal │ │ ├── oauth2.go │ │ ├── token.go │ │ └── transport.go │ ├── jws │ │ └── jws.go │ ├── jwt │ │ └── jwt.go │ ├── linkedin │ │ └── linkedin.go │ ├── mediamath │ │ └── mediamath.go │ ├── microsoft │ │ └── microsoft.go │ ├── oauth2.go │ ├── odnoklassniki │ │ └── odnoklassniki.go │ ├── paypal │ │ └── paypal.go │ ├── slack │ │ └── slack.go │ ├── token.go │ ├── transport.go │ ├── uber │ │ └── uber.go │ └── vk │ │ └── vk.go │ └── sys │ └── unix │ ├── LICENSE │ ├── asm.s │ ├── asm_darwin_386.s │ ├── asm_darwin_amd64.s │ ├── asm_darwin_arm.s │ ├── asm_darwin_arm64.s │ ├── asm_dragonfly_amd64.s │ ├── asm_freebsd_386.s │ ├── asm_freebsd_amd64.s │ ├── asm_freebsd_arm.s │ ├── asm_linux_386.s │ ├── asm_linux_amd64.s │ ├── asm_linux_arm.s │ ├── asm_linux_arm64.s │ ├── asm_linux_mips64x.s │ ├── asm_linux_ppc64x.s │ ├── asm_linux_s390x.s │ ├── asm_netbsd_386.s │ ├── asm_netbsd_amd64.s │ ├── asm_netbsd_arm.s │ ├── asm_openbsd_386.s │ ├── asm_openbsd_amd64.s │ ├── asm_solaris_amd64.s │ ├── bluetooth_linux.go │ ├── constants.go │ ├── env_unix.go │ ├── env_unset.go │ ├── flock.go │ ├── flock_linux_32bit.go │ ├── gccgo.go │ ├── gccgo_c.c │ ├── gccgo_linux_amd64.go │ ├── gccgo_linux_sparc64.go │ ├── mkpost.go │ ├── race.go │ ├── race0.go │ ├── sockcmsg_linux.go │ ├── sockcmsg_unix.go │ ├── str.go │ ├── syscall.go │ ├── syscall_bsd.go │ ├── syscall_darwin.go │ ├── syscall_darwin_386.go │ ├── syscall_darwin_amd64.go │ ├── syscall_darwin_arm.go │ ├── syscall_darwin_arm64.go │ ├── syscall_dragonfly.go │ ├── syscall_dragonfly_amd64.go │ ├── syscall_freebsd.go │ ├── syscall_freebsd_386.go │ ├── syscall_freebsd_amd64.go │ ├── syscall_freebsd_arm.go │ ├── syscall_linux.go │ ├── syscall_linux_386.go │ ├── syscall_linux_amd64.go │ ├── syscall_linux_arm.go │ ├── syscall_linux_arm64.go │ ├── syscall_linux_mips64x.go │ ├── syscall_linux_ppc64x.go │ ├── syscall_linux_s390x.go │ ├── syscall_linux_sparc64.go │ ├── syscall_netbsd.go │ ├── syscall_netbsd_386.go │ ├── syscall_netbsd_amd64.go │ ├── syscall_netbsd_arm.go │ ├── syscall_no_getwd.go │ ├── syscall_openbsd.go │ ├── syscall_openbsd_386.go │ ├── syscall_openbsd_amd64.go │ ├── syscall_solaris.go │ ├── syscall_solaris_amd64.go │ ├── syscall_unix.go │ ├── types_darwin.go │ ├── types_dragonfly.go │ ├── types_freebsd.go │ ├── types_linux.go │ ├── types_netbsd.go │ ├── types_openbsd.go │ ├── types_solaris.go │ ├── zerrors_darwin_386.go │ ├── zerrors_darwin_amd64.go │ ├── zerrors_darwin_arm.go │ ├── zerrors_darwin_arm64.go │ ├── zerrors_dragonfly_amd64.go │ ├── zerrors_freebsd_386.go │ ├── zerrors_freebsd_amd64.go │ ├── zerrors_freebsd_arm.go │ ├── zerrors_linux_386.go │ ├── zerrors_linux_amd64.go │ ├── zerrors_linux_arm.go │ ├── zerrors_linux_arm64.go │ ├── zerrors_linux_mips64.go │ ├── zerrors_linux_mips64le.go │ ├── zerrors_linux_ppc64.go │ ├── zerrors_linux_ppc64le.go │ ├── zerrors_linux_s390x.go │ ├── zerrors_linux_sparc64.go │ ├── zerrors_netbsd_386.go │ ├── zerrors_netbsd_amd64.go │ ├── zerrors_netbsd_arm.go │ ├── zerrors_openbsd_386.go │ ├── zerrors_openbsd_amd64.go │ ├── zerrors_solaris_amd64.go │ ├── zsyscall_darwin_386.go │ ├── zsyscall_darwin_amd64.go │ ├── zsyscall_darwin_arm.go │ ├── zsyscall_darwin_arm64.go │ ├── zsyscall_dragonfly_amd64.go │ ├── zsyscall_freebsd_386.go │ ├── zsyscall_freebsd_amd64.go │ ├── zsyscall_freebsd_arm.go │ ├── zsyscall_linux_386.go │ ├── zsyscall_linux_amd64.go │ ├── zsyscall_linux_arm.go │ ├── zsyscall_linux_arm64.go │ ├── zsyscall_linux_mips64.go │ ├── zsyscall_linux_mips64le.go │ ├── zsyscall_linux_ppc64.go │ ├── zsyscall_linux_ppc64le.go │ ├── zsyscall_linux_s390x.go │ ├── zsyscall_linux_sparc64.go │ ├── zsyscall_netbsd_386.go │ ├── zsyscall_netbsd_amd64.go │ ├── zsyscall_netbsd_arm.go │ ├── zsyscall_openbsd_386.go │ ├── zsyscall_openbsd_amd64.go │ ├── zsyscall_solaris_amd64.go │ ├── zsysctl_openbsd.go │ ├── zsysnum_darwin_386.go │ ├── zsysnum_darwin_amd64.go │ ├── zsysnum_darwin_arm.go │ ├── zsysnum_darwin_arm64.go │ ├── zsysnum_dragonfly_amd64.go │ ├── zsysnum_freebsd_386.go │ ├── zsysnum_freebsd_amd64.go │ ├── zsysnum_freebsd_arm.go │ ├── zsysnum_linux_386.go │ ├── zsysnum_linux_amd64.go │ ├── zsysnum_linux_arm.go │ ├── zsysnum_linux_arm64.go │ ├── zsysnum_linux_mips64.go │ ├── zsysnum_linux_mips64le.go │ ├── zsysnum_linux_ppc64.go │ ├── zsysnum_linux_ppc64le.go │ ├── zsysnum_linux_s390x.go │ ├── zsysnum_linux_sparc64.go │ ├── zsysnum_netbsd_386.go │ ├── zsysnum_netbsd_amd64.go │ ├── zsysnum_netbsd_arm.go │ ├── zsysnum_openbsd_386.go │ ├── zsysnum_openbsd_amd64.go │ ├── zsysnum_solaris_amd64.go │ ├── ztypes_darwin_386.go │ ├── ztypes_darwin_amd64.go │ ├── ztypes_darwin_arm.go │ ├── ztypes_darwin_arm64.go │ ├── ztypes_dragonfly_amd64.go │ ├── ztypes_freebsd_386.go │ ├── ztypes_freebsd_amd64.go │ ├── ztypes_freebsd_arm.go │ ├── ztypes_linux_386.go │ ├── ztypes_linux_amd64.go │ ├── ztypes_linux_arm.go │ ├── ztypes_linux_arm64.go │ ├── ztypes_linux_mips64.go │ ├── ztypes_linux_mips64le.go │ ├── ztypes_linux_ppc64.go │ ├── ztypes_linux_ppc64le.go │ ├── ztypes_linux_s390x.go │ ├── ztypes_linux_sparc64.go │ ├── ztypes_netbsd_386.go │ ├── ztypes_netbsd_amd64.go │ ├── ztypes_netbsd_arm.go │ ├── ztypes_openbsd_386.go │ ├── ztypes_openbsd_amd64.go │ └── ztypes_solaris_amd64.go ├── google.golang.org ├── api │ ├── compute │ │ └── v1 │ │ │ ├── LICENSE │ │ │ └── compute-gen.go │ ├── gensupport │ │ ├── LICENSE │ │ ├── backoff.go │ │ ├── buffer.go │ │ ├── doc.go │ │ ├── json.go │ │ ├── media.go │ │ ├── params.go │ │ ├── resumable.go │ │ ├── retry.go │ │ └── send.go │ └── googleapi │ │ ├── LICENSE │ │ ├── googleapi.go │ │ ├── internal │ │ └── uritemplates │ │ │ ├── uritemplates.go │ │ │ └── utils.go │ │ ├── transport │ │ └── apikey.go │ │ └── types.go ├── appengine │ ├── LICENSE │ ├── aetest │ │ ├── doc.go │ │ ├── instance.go │ │ ├── instance_classic.go │ │ ├── instance_vm.go │ │ └── user.go │ ├── appengine.go │ ├── appengine_vm.go │ ├── blobstore │ │ ├── blobstore.go │ │ └── read.go │ ├── capability │ │ └── capability.go │ ├── channel │ │ └── channel.go │ ├── cloudsql │ │ ├── cloudsql.go │ │ ├── cloudsql_classic.go │ │ └── cloudsql_vm.go │ ├── cmd │ │ ├── aebundler │ │ │ └── aebundler.go │ │ ├── aedeploy │ │ │ └── aedeploy.go │ │ └── aefix │ │ │ ├── ae.go │ │ │ ├── fix.go │ │ │ ├── main.go │ │ │ └── typecheck.go │ ├── datastore │ │ ├── datastore.go │ │ ├── doc.go │ │ ├── key.go │ │ ├── load.go │ │ ├── metadata.go │ │ ├── prop.go │ │ ├── query.go │ │ ├── save.go │ │ └── transaction.go │ ├── delay │ │ └── delay.go │ ├── demos │ │ ├── guestbook │ │ │ └── guestbook.go │ │ └── helloworld │ │ │ └── helloworld.go │ ├── errors.go │ ├── file │ │ └── file.go │ ├── identity.go │ ├── image │ │ └── image.go │ ├── internal │ │ ├── aetesting │ │ │ └── fake.go │ │ ├── api.go │ │ ├── api_classic.go │ │ ├── api_common.go │ │ ├── app_id.go │ │ ├── app_identity │ │ │ └── app_identity_service.pb.go │ │ ├── base │ │ │ └── api_base.pb.go │ │ ├── blobstore │ │ │ └── blobstore_service.pb.go │ │ ├── capability │ │ │ └── capability_service.pb.go │ │ ├── channel │ │ │ └── channel_service.pb.go │ │ ├── datastore │ │ │ └── datastore_v3.pb.go │ │ ├── identity.go │ │ ├── identity_classic.go │ │ ├── identity_vm.go │ │ ├── image │ │ │ └── images_service.pb.go │ │ ├── internal.go │ │ ├── log │ │ │ └── log_service.pb.go │ │ ├── mail │ │ │ └── mail_service.pb.go │ │ ├── main.go │ │ ├── main_vm.go │ │ ├── memcache │ │ │ └── memcache_service.pb.go │ │ ├── metadata.go │ │ ├── modules │ │ │ └── modules_service.pb.go │ │ ├── net.go │ │ ├── remote_api │ │ │ └── remote_api.pb.go │ │ ├── search │ │ │ └── search.pb.go │ │ ├── socket │ │ │ └── socket_service.pb.go │ │ ├── system │ │ │ └── system_service.pb.go │ │ ├── taskqueue │ │ │ └── taskqueue_service.pb.go │ │ ├── transaction.go │ │ ├── urlfetch │ │ │ └── urlfetch_service.pb.go │ │ ├── user │ │ │ └── user_service.pb.go │ │ └── xmpp │ │ │ └── xmpp_service.pb.go │ ├── log │ │ ├── api.go │ │ └── log.go │ ├── mail │ │ └── mail.go │ ├── memcache │ │ └── memcache.go │ ├── module │ │ └── module.go │ ├── namespace.go │ ├── remote_api │ │ ├── client.go │ │ └── remote_api.go │ ├── runtime │ │ └── runtime.go │ ├── search │ │ ├── doc.go │ │ ├── field.go │ │ ├── search.go │ │ └── struct.go │ ├── socket │ │ ├── doc.go │ │ ├── socket_classic.go │ │ └── socket_vm.go │ ├── taskqueue │ │ └── taskqueue.go │ ├── timeout.go │ ├── urlfetch │ │ └── urlfetch.go │ ├── user │ │ ├── oauth.go │ │ ├── user.go │ │ ├── user_classic.go │ │ └── user_vm.go │ └── xmpp │ │ └── xmpp.go ├── genproto │ └── protobuf │ │ ├── LICENSE │ │ ├── api.pb.go │ │ ├── descriptor.pb.go │ │ ├── field_mask.pb.go │ │ ├── source_context.pb.go │ │ └── type.pb.go └── grpc │ ├── LICENSE │ ├── backoff.go │ ├── balancer.go │ ├── benchmark │ ├── benchmark.go │ ├── client │ │ └── main.go │ ├── grpc_testing │ │ ├── control.pb.go │ │ ├── messages.pb.go │ │ ├── payloads.pb.go │ │ ├── services.pb.go │ │ └── stats.pb.go │ ├── server │ │ └── main.go │ ├── stats │ │ ├── histogram.go │ │ ├── stats.go │ │ └── util.go │ └── worker │ │ ├── benchmark_client.go │ │ ├── benchmark_server.go │ │ ├── main.go │ │ └── util.go │ ├── call.go │ ├── clientconn.go │ ├── codes │ ├── code_string.go │ └── codes.go │ ├── credentials │ ├── credentials.go │ ├── credentials_util_go17.go │ ├── credentials_util_pre_go17.go │ └── oauth │ │ └── oauth.go │ ├── doc.go │ ├── examples │ ├── helloworld │ │ ├── greeter_client │ │ │ └── main.go │ │ ├── greeter_server │ │ │ └── main.go │ │ └── helloworld │ │ │ └── helloworld.pb.go │ └── route_guide │ │ ├── client │ │ └── client.go │ │ ├── routeguide │ │ └── route_guide.pb.go │ │ └── server │ │ └── server.go │ ├── grpclb │ ├── grpc_lb_v1 │ │ └── grpclb.pb.go │ └── grpclb.go │ ├── grpclog │ ├── glogger │ │ └── glogger.go │ └── logger.go │ ├── health │ ├── grpc_health_v1 │ │ └── health.pb.go │ └── health.go │ ├── interceptor.go │ ├── internal │ └── internal.go │ ├── interop │ ├── client │ │ └── client.go │ ├── grpc_testing │ │ └── test.pb.go │ ├── server │ │ └── server.go │ └── test_utils.go │ ├── metadata │ └── metadata.go │ ├── naming │ └── naming.go │ ├── peer │ └── peer.go │ ├── reflection │ ├── grpc_reflection_v1alpha │ │ └── reflection.pb.go │ ├── grpc_testing │ │ ├── proto2.pb.go │ │ ├── proto2_ext.pb.go │ │ └── test.pb.go │ └── serverreflection.go │ ├── rpc_util.go │ ├── server.go │ ├── stats │ ├── grpc_testing │ │ └── test.pb.go │ ├── handlers.go │ └── stats.go │ ├── stream.go │ ├── stress │ ├── client │ │ └── main.go │ ├── grpc_testing │ │ └── metrics.pb.go │ └── metrics_client │ │ └── main.go │ ├── tap │ └── tap.go │ ├── test │ ├── codec_perf │ │ └── perf.pb.go │ └── grpc_testing │ │ └── test.pb.go │ ├── trace.go │ └── transport │ ├── control.go │ ├── go16.go │ ├── go17.go │ ├── handler_server.go │ ├── http2_client.go │ ├── http2_server.go │ ├── http_util.go │ ├── pre_go16.go │ └── transport.go └── manifest /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/README.md -------------------------------------------------------------------------------- /core/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/core/address.go -------------------------------------------------------------------------------- /core/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/core/config/config.go -------------------------------------------------------------------------------- /core/contact-protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/core/contact-protocol.go -------------------------------------------------------------------------------- /core/contact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/core/contact.go -------------------------------------------------------------------------------- /core/contactlist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/core/contactlist.go -------------------------------------------------------------------------------- /core/conversation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/core/conversation.go -------------------------------------------------------------------------------- /core/identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/core/identity.go -------------------------------------------------------------------------------- /core/inboundcontactrequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/core/inboundcontactrequest.go -------------------------------------------------------------------------------- /core/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/core/network.go -------------------------------------------------------------------------------- /core/onionconnector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/core/onionconnector.go -------------------------------------------------------------------------------- /core/ricochet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/core/ricochet.go -------------------------------------------------------------------------------- /core/rpcserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/core/rpcserver.go -------------------------------------------------------------------------------- /core/sanitize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/core/sanitize.go -------------------------------------------------------------------------------- /core/utils/misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/core/utils/misc.go -------------------------------------------------------------------------------- /core/utils/publisher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/core/utils/publisher.go -------------------------------------------------------------------------------- /ricochet-cli/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/ricochet-cli/client.go -------------------------------------------------------------------------------- /ricochet-cli/contact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/ricochet-cli/contact.go -------------------------------------------------------------------------------- /ricochet-cli/conversation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/ricochet-cli/conversation.go -------------------------------------------------------------------------------- /ricochet-cli/innernet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/ricochet-cli/innernet.go -------------------------------------------------------------------------------- /ricochet-cli/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/ricochet-cli/main.go -------------------------------------------------------------------------------- /ricochet-cli/ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/ricochet-cli/ui.go -------------------------------------------------------------------------------- /rpc/config.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/rpc/config.pb.go -------------------------------------------------------------------------------- /rpc/config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/rpc/config.proto -------------------------------------------------------------------------------- /rpc/contact.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/rpc/contact.pb.go -------------------------------------------------------------------------------- /rpc/contact.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/rpc/contact.proto -------------------------------------------------------------------------------- /rpc/conversation.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/rpc/conversation.pb.go -------------------------------------------------------------------------------- /rpc/conversation.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/rpc/conversation.proto -------------------------------------------------------------------------------- /rpc/core.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/rpc/core.pb.go -------------------------------------------------------------------------------- /rpc/core.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/rpc/core.proto -------------------------------------------------------------------------------- /rpc/identity.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/rpc/identity.pb.go -------------------------------------------------------------------------------- /rpc/identity.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/rpc/identity.proto -------------------------------------------------------------------------------- /rpc/network.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/rpc/network.pb.go -------------------------------------------------------------------------------- /rpc/network.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/rpc/network.proto -------------------------------------------------------------------------------- /rpc/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/rpc/rpc.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/compute/metadata/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/cloud.google.com/go/compute/metadata/LICENSE -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/compute/metadata/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/cloud.google.com/go/compute/metadata/metadata.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/internal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/cloud.google.com/go/internal/LICENSE -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/internal/cloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/cloud.google.com/go/internal/cloud.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/internal/fields/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/cloud.google.com/go/internal/fields/fields.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/internal/fields/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/cloud.google.com/go/internal/fields/fold.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/internal/optional/optional.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/cloud.google.com/go/internal/optional/optional.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/internal/pretty/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/cloud.google.com/go/internal/pretty/diff.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/internal/pretty/pretty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/cloud.google.com/go/internal/pretty/pretty.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/internal/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/cloud.google.com/go/internal/retry.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/internal/testutil/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/cloud.google.com/go/internal/testutil/context.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/internal/testutil/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/cloud.google.com/go/internal/testutil/server.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/ansi_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/ansi_windows.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/complete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/complete.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/complete_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/complete_helper.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/complete_segment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/complete_segment.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/example/readline-demo/readline-demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/example/readline-demo/readline-demo.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/example/readline-im/readline-im.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/example/readline-im/readline-im.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/example/readline-multiline/readline-multiline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/example/readline-multiline/readline-multiline.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/example/readline-pass-strength/readline-pass-strength.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/example/readline-pass-strength/readline-pass-strength.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/example/readline-remote/readline-remote-client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/example/readline-remote/readline-remote-client/client.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/example/readline-remote/readline-remote-server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/example/readline-remote/readline-remote-server/server.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/history.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/operation.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/password.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/password.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/rawreader_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/rawreader_windows.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/readline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/readline.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/remote.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/runebuf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/runebuf.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/runes.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/runes/runes.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/search.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/std.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/std.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/std_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/std_windows.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/term.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/term_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/term_bsd.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/term_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/term_linux.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/term_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/term_solaris.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/term_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/term_unix.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/term_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/term_windows.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/terminal.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/utils.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/utils_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/utils_unix.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/utils_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/utils_windows.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/vim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/vim.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/windows_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/chzyer/readline/windows_api.go -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/glog/glog_file.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/descriptor/descriptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/descriptor/descriptor.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/jsonpb/jsonpb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/jsonpb/jsonpb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/more_test_objects.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/more_test_objects.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/test_objects.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/test_objects.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/proto/clone.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/proto/decode.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/proto/encode.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/proto/equal.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/extensions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/proto/extensions.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/proto/lib.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/message_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/proto/message_set.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/pointer_reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/proto/pointer_reflect.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/pointer_unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/proto/pointer_unsafe.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/proto/properties.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/proto3_proto/proto3.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/proto/proto3_proto/proto3.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/proto/text.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/text_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/proto/text_parser.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/descriptor/descriptor.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/descriptor/descriptor.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/doc.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/generator/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/generator/generator.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/grpc/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/grpc/grpc.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/link_grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/link_grpc.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/main.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/plugin/plugin.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/plugin/plugin.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/ptypes/any.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/any/any.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/ptypes/any/any.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/ptypes/doc.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/ptypes/duration.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/duration/duration.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/ptypes/duration/duration.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/empty/empty.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/ptypes/empty/empty.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/struct/struct.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/ptypes/struct/struct.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/ptypes/timestamp.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/timestamp/timestamp.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/ptypes/timestamp/timestamp.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/wrappers/wrappers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/golang/protobuf/ptypes/wrappers/wrappers.pb.go -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gax-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/googleapis/gax-go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gax-go/call_option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/googleapis/gax-go/call_option.go -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gax-go/gax.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/googleapis/gax-go/gax.go -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gax-go/invoke.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/googleapis/gax-go/invoke.go -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gax-go/path_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/googleapis/gax-go/path_template.go -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gax-go/path_template_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/googleapis/gax-go/path_template_parser.go -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/adjacency/adjcmartix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/adjacency/adjcmartix.go -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/data/bindata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/data/bindata.go -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/entropy/entropyCalculator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/entropy/entropyCalculator.go -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/frequency/frequency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/frequency/frequency.go -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/match/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/match/match.go -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/matching/dateMatchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/matching/dateMatchers.go -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/matching/dictionaryMatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/matching/dictionaryMatch.go -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/matching/leet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/matching/leet.go -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/matching/matching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/matching/matching.go -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/matching/repeatMatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/matching/repeatMatch.go -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/matching/sequenceMatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/matching/sequenceMatch.go -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/matching/spatialMatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/matching/spatialMatch.go -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/scoring/scoring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/scoring/scoring.go -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/testapp/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/testapp/main.go -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/utils/math/mathutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/utils/math/mathutils.go -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/vendor/github.com/davecgh/go-spew/spew/bypass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/vendor/github.com/davecgh/go-spew/spew/bypass.go -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/vendor/github.com/davecgh/go-spew/spew/bypasssafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/vendor/github.com/davecgh/go-spew/spew/bypasssafe.go -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/vendor/github.com/davecgh/go-spew/spew/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/vendor/github.com/davecgh/go-spew/spew/common.go -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/vendor/github.com/davecgh/go-spew/spew/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/vendor/github.com/davecgh/go-spew/spew/config.go -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/vendor/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/vendor/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/vendor/github.com/davecgh/go-spew/spew/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/vendor/github.com/davecgh/go-spew/spew/dump.go -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/vendor/github.com/davecgh/go-spew/spew/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/vendor/github.com/davecgh/go-spew/spew/format.go -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/vendor/github.com/davecgh/go-spew/spew/spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/vendor/github.com/davecgh/go-spew/spew/spew.go -------------------------------------------------------------------------------- /vendor/github.com/nbutton23/zxcvbn-go/zxcvbn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/nbutton23/zxcvbn-go/zxcvbn.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/application/acceptallcontactmanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/application/acceptallcontactmanager.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/application/application.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/application/application.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/application/contactmanagerinterface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/application/contactmanagerinterface.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/application/examples/echobot/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/application/examples/echobot/main.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/application/ricochetonion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/application/ricochetonion.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/channels/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/channels/channel.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/channels/chatchannel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/channels/chatchannel.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/channels/contactrequestchannel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/channels/contactrequestchannel.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/channels/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/channels/handler.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/channels/hiddenserviceauthchannel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/channels/hiddenserviceauthchannel.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/connection/autoconnectionhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/connection/autoconnectionhandler.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/connection/channelmanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/connection/channelmanager.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/connection/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/connection/connection.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/connection/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/connection/handler.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/connection/inboundconnectionhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/connection/inboundconnectionhandler.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/connection/outboundconnectionhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/connection/outboundconnectionhandler.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/examples/echobot/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/examples/echobot/main.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/policies/timeoutpolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/policies/timeoutpolicy.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/ricochet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/ricochet.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/utils/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/utils/crypto.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/utils/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/utils/error.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/utils/messagebuilder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/utils/messagebuilder.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/utils/networking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/utils/networking.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/utils/networkresolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/utils/networkresolver.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/utils/tor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/utils/tor.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/wire/auth/auth_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/wire/auth/auth_message.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/wire/chat/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/wire/chat/chat.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/wire/contact/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/wire/contact/request.go -------------------------------------------------------------------------------- /vendor/github.com/s-rah/go-ricochet/wire/control/control_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/s-rah/go-ricochet/wire/control/control_message.go -------------------------------------------------------------------------------- /vendor/github.com/yawning/bulb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/yawning/bulb/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/yawning/bulb/cmd_authenticate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/yawning/bulb/cmd_authenticate.go -------------------------------------------------------------------------------- /vendor/github.com/yawning/bulb/cmd_onion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/yawning/bulb/cmd_onion.go -------------------------------------------------------------------------------- /vendor/github.com/yawning/bulb/cmd_protocolinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/yawning/bulb/cmd_protocolinfo.go -------------------------------------------------------------------------------- /vendor/github.com/yawning/bulb/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/yawning/bulb/conn.go -------------------------------------------------------------------------------- /vendor/github.com/yawning/bulb/dialer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/yawning/bulb/dialer.go -------------------------------------------------------------------------------- /vendor/github.com/yawning/bulb/examples/basic/basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/yawning/bulb/examples/basic/basic.go -------------------------------------------------------------------------------- /vendor/github.com/yawning/bulb/examples/dialer/dialer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/yawning/bulb/examples/dialer/dialer.go -------------------------------------------------------------------------------- /vendor/github.com/yawning/bulb/examples/listener/listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/yawning/bulb/examples/listener/listener.go -------------------------------------------------------------------------------- /vendor/github.com/yawning/bulb/listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/yawning/bulb/listener.go -------------------------------------------------------------------------------- /vendor/github.com/yawning/bulb/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/yawning/bulb/response.go -------------------------------------------------------------------------------- /vendor/github.com/yawning/bulb/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/yawning/bulb/status.go -------------------------------------------------------------------------------- /vendor/github.com/yawning/bulb/utils/pkcs1/rsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/yawning/bulb/utils/pkcs1/rsa.go -------------------------------------------------------------------------------- /vendor/github.com/yawning/bulb/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/github.com/yawning/bulb/utils/utils.go -------------------------------------------------------------------------------- /vendor/go4.org/syncutil/singleflight/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/go4.org/syncutil/singleflight/LICENSE -------------------------------------------------------------------------------- /vendor/go4.org/syncutil/singleflight/singleflight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/go4.org/syncutil/singleflight/singleflight.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/crypto/acme/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/crypto/acme/acme.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/autocert/autocert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/crypto/acme/autocert/autocert.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/autocert/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/crypto/acme/autocert/cache.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/autocert/renewal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/crypto/acme/autocert/renewal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/crypto/acme/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/crypto/acme/types.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/crypto/ssh/terminal/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/crypto/ssh/terminal/terminal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/context/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/ctxhttp/ctxhttp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/context/ctxhttp/ctxhttp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/ctxhttp/ctxhttp_pre17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/context/ctxhttp/ctxhttp_pre17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/pre_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/context/pre_go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/client_conn_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/client_conn_pool.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/configure_transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/configure_transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/fixed_buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/fixed_buffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go17_not18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/go17_not18.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/go18.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/h2demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/h2demo/h2demo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/launch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/h2demo/launch.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2i/h2i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/h2i/h2i.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/hpack/encode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/hpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/hpack/hpack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/huffman.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/hpack/huffman.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/hpack/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/not_go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/not_go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/not_go18.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/writesched_priority.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/writesched_priority.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/writesched_random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/http2/writesched_random.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/idna/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/timeseries/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/internal/timeseries/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/timeseries/timeseries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/internal/timeseries/timeseries.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lex/httplex/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/lex/httplex/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lex/httplex/httplex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/lex/httplex/httplex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/proxy/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/per_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/proxy/per_host.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/trace/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/bitbucket/bitbucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/bitbucket/bitbucket.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/client_appengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/client_appengine.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/clientcredentials/clientcredentials.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/clientcredentials/clientcredentials.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/facebook/facebook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/facebook/facebook.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/fitbit/fitbit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/fitbit/fitbit.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/foursquare/foursquare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/foursquare/foursquare.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/github/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/github/github.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/appengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/google/appengine.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/appengine_hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/google/appengine_hook.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/appenginevm_hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/google/appenginevm_hook.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/google/default.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/google.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/google/google.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/google/jwt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/sdk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/google/sdk.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/heroku/heroku.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/heroku/heroku.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/hipchat/hipchat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/hipchat/hipchat.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/internal/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/internal/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/internal/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/internal/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/internal/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/internal/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jws/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/jws/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/jwt/jwt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/linkedin/linkedin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/linkedin/linkedin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/mediamath/mediamath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/mediamath/mediamath.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/microsoft/microsoft.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/microsoft/microsoft.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/odnoklassniki/odnoklassniki.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/odnoklassniki/odnoklassniki.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/paypal/paypal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/paypal/paypal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/slack/slack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/slack/slack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/uber/uber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/uber/uber.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/vk/vk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/oauth2/vk/vk.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mips64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/env_unset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/flock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/flock_linux_32bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/flock_linux_32bit.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/gccgo_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_no_getwd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_no_getwd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/types_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/types_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/types_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/types_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/types_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/types_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/types_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysctl_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysctl_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/zsysnum_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/google.golang.org/api/compute/v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/api/compute/v1/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/api/compute/v1/compute-gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/api/compute/v1/compute-gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/api/gensupport/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/api/gensupport/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/api/gensupport/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/api/gensupport/backoff.go -------------------------------------------------------------------------------- /vendor/google.golang.org/api/gensupport/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/api/gensupport/buffer.go -------------------------------------------------------------------------------- /vendor/google.golang.org/api/gensupport/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/api/gensupport/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/api/gensupport/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/api/gensupport/json.go -------------------------------------------------------------------------------- /vendor/google.golang.org/api/gensupport/media.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/api/gensupport/media.go -------------------------------------------------------------------------------- /vendor/google.golang.org/api/gensupport/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/api/gensupport/params.go -------------------------------------------------------------------------------- /vendor/google.golang.org/api/gensupport/resumable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/api/gensupport/resumable.go -------------------------------------------------------------------------------- /vendor/google.golang.org/api/gensupport/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/api/gensupport/retry.go -------------------------------------------------------------------------------- /vendor/google.golang.org/api/gensupport/send.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/api/gensupport/send.go -------------------------------------------------------------------------------- /vendor/google.golang.org/api/googleapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/api/googleapi/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/api/googleapi/googleapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/api/googleapi/googleapi.go -------------------------------------------------------------------------------- /vendor/google.golang.org/api/googleapi/internal/uritemplates/uritemplates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/api/googleapi/internal/uritemplates/uritemplates.go -------------------------------------------------------------------------------- /vendor/google.golang.org/api/googleapi/internal/uritemplates/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/api/googleapi/internal/uritemplates/utils.go -------------------------------------------------------------------------------- /vendor/google.golang.org/api/googleapi/transport/apikey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/api/googleapi/transport/apikey.go -------------------------------------------------------------------------------- /vendor/google.golang.org/api/googleapi/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/api/googleapi/types.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/aetest/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/aetest/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/aetest/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/aetest/instance.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/aetest/instance_classic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/aetest/instance_classic.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/aetest/instance_vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/aetest/instance_vm.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/aetest/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/aetest/user.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/appengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/appengine.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/appengine_vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/appengine_vm.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/blobstore/blobstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/blobstore/blobstore.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/blobstore/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/blobstore/read.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/capability/capability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/capability/capability.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/channel/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/channel/channel.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/cloudsql/cloudsql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/cloudsql/cloudsql.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/cloudsql/cloudsql_classic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/cloudsql/cloudsql_classic.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/cloudsql/cloudsql_vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/cloudsql/cloudsql_vm.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/cmd/aebundler/aebundler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/cmd/aebundler/aebundler.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/cmd/aedeploy/aedeploy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/cmd/aedeploy/aedeploy.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/cmd/aefix/ae.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/cmd/aefix/ae.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/cmd/aefix/fix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/cmd/aefix/fix.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/cmd/aefix/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/cmd/aefix/main.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/cmd/aefix/typecheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/cmd/aefix/typecheck.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/datastore/datastore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/datastore/datastore.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/datastore/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/datastore/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/datastore/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/datastore/key.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/datastore/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/datastore/load.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/datastore/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/datastore/metadata.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/datastore/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/datastore/prop.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/datastore/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/datastore/query.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/datastore/save.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/datastore/save.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/datastore/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/datastore/transaction.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/delay/delay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/delay/delay.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/demos/guestbook/guestbook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/demos/guestbook/guestbook.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/demos/helloworld/helloworld.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/demos/helloworld/helloworld.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/errors.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/file/file.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/identity.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/image/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/image/image.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/aetesting/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/aetesting/fake.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/api.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/api_classic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/api_classic.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/api_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/api_common.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/app_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/app_id.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/app_identity/app_identity_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/app_identity/app_identity_service.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/base/api_base.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/base/api_base.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/blobstore/blobstore_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/blobstore/blobstore_service.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/capability/capability_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/capability/capability_service.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/channel/channel_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/channel/channel_service.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/datastore/datastore_v3.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/datastore/datastore_v3.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/identity.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/identity_classic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/identity_classic.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/identity_vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/identity_vm.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/image/images_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/image/images_service.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/internal.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/log/log_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/log/log_service.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/mail/mail_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/mail/mail_service.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/main.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/main_vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/main_vm.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/memcache/memcache_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/memcache/memcache_service.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/metadata.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/modules/modules_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/modules/modules_service.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/net.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/remote_api/remote_api.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/remote_api/remote_api.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/search/search.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/search/search.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/socket/socket_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/socket/socket_service.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/system/system_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/system/system_service.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/taskqueue/taskqueue_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/taskqueue/taskqueue_service.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/transaction.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/urlfetch/urlfetch_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/urlfetch/urlfetch_service.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/user/user_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/user/user_service.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/xmpp/xmpp_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/internal/xmpp/xmpp_service.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/log/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/log/api.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/log/log.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/mail/mail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/mail/mail.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/memcache/memcache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/memcache/memcache.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/module/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/module/module.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/namespace.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/remote_api/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/remote_api/client.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/remote_api/remote_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/remote_api/remote_api.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/runtime/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/runtime/runtime.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/search/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/search/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/search/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/search/field.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/search/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/search/search.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/search/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/search/struct.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/socket/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/socket/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/socket/socket_classic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/socket/socket_classic.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/socket/socket_vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/socket/socket_vm.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/taskqueue/taskqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/taskqueue/taskqueue.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/timeout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/timeout.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/urlfetch/urlfetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/urlfetch/urlfetch.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/user/oauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/user/oauth.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/user/user.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/user/user_classic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/user/user_classic.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/user/user_vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/user/user_vm.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/xmpp/xmpp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/appengine/xmpp/xmpp.go -------------------------------------------------------------------------------- /vendor/google.golang.org/genproto/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/genproto/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/genproto/protobuf/api.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/genproto/protobuf/api.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/genproto/protobuf/descriptor.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/genproto/protobuf/descriptor.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/genproto/protobuf/field_mask.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/genproto/protobuf/field_mask.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/genproto/protobuf/source_context.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/genproto/protobuf/source_context.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/genproto/protobuf/type.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/genproto/protobuf/type.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/balancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/balancer.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/benchmark/benchmark.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/benchmark/benchmark.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/benchmark/client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/benchmark/client/main.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/benchmark/grpc_testing/control.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/benchmark/grpc_testing/control.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/benchmark/grpc_testing/messages.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/benchmark/grpc_testing/messages.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/benchmark/grpc_testing/payloads.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/benchmark/grpc_testing/payloads.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/benchmark/grpc_testing/services.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/benchmark/grpc_testing/services.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/benchmark/grpc_testing/stats.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/benchmark/grpc_testing/stats.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/benchmark/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/benchmark/server/main.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/benchmark/stats/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/benchmark/stats/histogram.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/benchmark/stats/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/benchmark/stats/stats.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/benchmark/stats/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/benchmark/stats/util.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/benchmark/worker/benchmark_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/benchmark/worker/benchmark_client.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/benchmark/worker/benchmark_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/benchmark/worker/benchmark_server.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/benchmark/worker/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/benchmark/worker/main.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/benchmark/worker/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/benchmark/worker/util.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/clientconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/clientconn.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codes/code_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/codes/code_string.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codes/codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/codes/codes.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/credentials/credentials.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/credentials/credentials.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/credentials/credentials_util_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/credentials/credentials_util_go17.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/credentials/credentials_util_pre_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/credentials/credentials_util_pre_go17.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/credentials/oauth/oauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/credentials/oauth/oauth.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/examples/helloworld/greeter_client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/examples/helloworld/greeter_client/main.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/examples/helloworld/greeter_server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/examples/helloworld/greeter_server/main.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/examples/helloworld/helloworld/helloworld.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/examples/helloworld/helloworld/helloworld.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/examples/route_guide/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/examples/route_guide/client/client.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/examples/route_guide/routeguide/route_guide.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/examples/route_guide/routeguide/route_guide.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/examples/route_guide/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/examples/route_guide/server/server.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/grpclb/grpc_lb_v1/grpclb.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/grpclb/grpc_lb_v1/grpclb.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/grpclb/grpclb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/grpclb/grpclb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/grpclog/glogger/glogger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/grpclog/glogger/glogger.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/grpclog/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/grpclog/logger.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/health/grpc_health_v1/health.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/health/grpc_health_v1/health.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/health/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/health/health.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/interceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/interceptor.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/internal/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/internal/internal.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/interop/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/interop/client/client.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/interop/grpc_testing/test.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/interop/grpc_testing/test.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/interop/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/interop/server/server.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/interop/test_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/interop/test_utils.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/metadata/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/metadata/metadata.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/naming/naming.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/naming/naming.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/peer/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/peer/peer.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/reflection/grpc_reflection_v1alpha/reflection.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/reflection/grpc_reflection_v1alpha/reflection.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/reflection/grpc_testing/proto2.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/reflection/grpc_testing/proto2.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/reflection/grpc_testing/proto2_ext.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/reflection/grpc_testing/proto2_ext.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/reflection/grpc_testing/test.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/reflection/grpc_testing/test.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/reflection/serverreflection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/reflection/serverreflection.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/rpc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/rpc_util.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stats/grpc_testing/test.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/stats/grpc_testing/test.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stats/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/stats/handlers.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stats/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/stats/stats.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stress/client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/stress/client/main.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stress/grpc_testing/metrics.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/stress/grpc_testing/metrics.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stress/metrics_client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/stress/metrics_client/main.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/test/codec_perf/perf.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/test/codec_perf/perf.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/test/grpc_testing/test.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/test/grpc_testing/test.pb.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/transport/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/transport/control.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/transport/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/transport/go16.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/transport/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/transport/go17.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/transport/handler_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/transport/handler_server.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/transport/http2_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/transport/http2_client.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/transport/http2_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/transport/http2_server.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/transport/http_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/transport/http_util.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/transport/pre_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/transport/pre_go16.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/transport/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/google.golang.org/grpc/transport/transport.go -------------------------------------------------------------------------------- /vendor/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricochet-im/ricochet-go/HEAD/vendor/manifest --------------------------------------------------------------------------------