├── .circleci ├── config.yml └── main.yml ├── .codeclimate.yml ├── .dockerignore ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ ├── doc.yml │ ├── enhancement.yml │ └── feature.yml ├── auto-comment.yml ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── docker-image.yml │ ├── golang-analysis.yml │ ├── stale.yml │ ├── sync-release-assets.yml │ └── testground-on-push.yml ├── .gitignore ├── .golangci.yml ├── .mailmap ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── GNUmakefile ├── LICENSE ├── LICENSE-APACHE ├── LICENSE-MIT ├── Makefile ├── README.Fork.md ├── README.md ├── README_CN.md ├── Rules.mk ├── SECURITY.md ├── appveyor.yml ├── assets ├── README.md ├── assets.go ├── dag-index-html │ ├── README.md │ └── index.go ├── dir-index-html │ ├── README.md │ ├── dir-index.html │ ├── index.go │ ├── knownIcons.txt │ ├── package.json │ ├── src │ │ ├── dir-index.html │ │ ├── icons.css │ │ └── style.css │ └── test │ │ ├── go.mod │ │ └── main.go └── init-doc │ ├── about │ ├── contact │ ├── docs │ └── index │ ├── help │ ├── ping │ ├── quick-start │ ├── readme │ └── security-notes ├── bin ├── Rules.mk ├── archive-branches.sh ├── check_go_version ├── check_version ├── container_daemon ├── container_init_run ├── dist_get ├── gencmdref ├── get-docker-tags.sh ├── graphmd ├── ipns-republish ├── maketarball.sh ├── mkreleaselog ├── push-docker-tags.sh └── test-go-fmt ├── blocks └── blockstoreutil │ └── remove.go ├── cmd ├── ipfs │ ├── .gitignore │ ├── Rules.mk │ ├── add_migrations.go │ ├── daemon.go │ ├── daemon_linux.go │ ├── daemon_other.go │ ├── debug.go │ ├── dist │ │ ├── LICENSE │ │ ├── LICENSE-APACHE │ │ ├── LICENSE-MIT │ │ ├── README.md │ │ └── install.sh │ ├── dnsresolve_test.go │ ├── init.go │ ├── ipfs.go │ ├── main.go │ ├── pinmfs.go │ ├── pinmfs_test.go │ ├── runmain_test.go │ └── util │ │ ├── signal.go │ │ ├── signal_wasm.go │ │ ├── ui.go │ │ ├── ui_windows.go │ │ ├── ulimit.go │ │ ├── ulimit_freebsd.go │ │ ├── ulimit_test.go │ │ ├── ulimit_unix.go │ │ └── ulimit_windows.go └── ipfswatch │ ├── README.md │ ├── ipfswatch_test.go │ └── main.go ├── codecov.yml ├── commands ├── context.go └── reqlog.go ├── config ├── addresses.go ├── api.go ├── autonat.go ├── bootstrap_peers.go ├── bootstrap_peers_test.go ├── config.go ├── config_test.go ├── datastore.go ├── discovery.go ├── dns.go ├── experiments.go ├── gateway.go ├── identity.go ├── init.go ├── init_test.go ├── internal.go ├── ipns.go ├── migration.go ├── migration_test.go ├── mounts.go ├── peering.go ├── plugins.go ├── profile.go ├── provider.go ├── pubsub.go ├── remotepin.go ├── reprovider.go ├── routing.go ├── routing_test.go ├── serialize │ ├── serialize.go │ └── serialize_test.go ├── swarm.go ├── types.go └── types_test.go ├── core ├── .gitignore ├── bootstrap │ ├── bootstrap.go │ └── bootstrap_test.go ├── builder.go ├── commands │ ├── active.go │ ├── add.go │ ├── bitswap.go │ ├── block.go │ ├── bootstrap.go │ ├── cat.go │ ├── cid.go │ ├── cmdenv │ │ ├── cidbase.go │ │ ├── cidbase_test.go │ │ ├── env.go │ │ ├── env_test.go │ │ └── file.go │ ├── cmdutils │ │ └── utils.go │ ├── commands.go │ ├── commands_test.go │ ├── completion.go │ ├── config.go │ ├── config_test.go │ ├── dag │ │ ├── dag.go │ │ ├── export.go │ │ ├── get.go │ │ ├── import.go │ │ ├── put.go │ │ ├── resolve.go │ │ └── stat.go │ ├── dht.go │ ├── dht_test.go │ ├── diag.go │ ├── dns.go │ ├── e │ │ └── error.go │ ├── external.go │ ├── extra.go │ ├── files.go │ ├── filestore.go │ ├── get.go │ ├── get_test.go │ ├── helptext_test.go │ ├── id.go │ ├── keyencode │ │ └── keyencode.go │ ├── keystore.go │ ├── log.go │ ├── ls.go │ ├── mount_nofuse.go │ ├── mount_unix.go │ ├── mount_windows.go │ ├── multibase.go │ ├── name │ │ ├── ipns.go │ │ ├── ipnsps.go │ │ ├── name.go │ │ └── publish.go │ ├── object │ │ ├── diff.go │ │ ├── object.go │ │ └── patch.go │ ├── p2p.go │ ├── pin │ │ ├── pin.go │ │ ├── remotepin.go │ │ └── remotepin_test.go │ ├── ping.go │ ├── profile.go │ ├── pubsub.go │ ├── refs.go │ ├── repo.go │ ├── resolve.go │ ├── root.go │ ├── root_test.go │ ├── routing.go │ ├── shutdown.go │ ├── stat.go │ ├── stat_dht.go │ ├── stat_provide.go │ ├── swarm.go │ ├── sysdiag.go │ ├── tar.go │ ├── unixfs │ │ ├── ls.go │ │ └── unixfs.go │ ├── urlstore.go │ └── version.go ├── core.go ├── core_test.go ├── coreapi │ ├── block.go │ ├── coreapi.go │ ├── dag.go │ ├── dht.go │ ├── key.go │ ├── name.go │ ├── object.go │ ├── path.go │ ├── pin.go │ ├── pubsub.go │ ├── swarm.go │ ├── test │ │ ├── api_test.go │ │ └── path_test.go │ └── unixfs.go ├── corehttp │ ├── commands.go │ ├── corehttp.go │ ├── gateway.go │ ├── gateway_handler.go │ ├── gateway_handler_block.go │ ├── gateway_handler_car.go │ ├── gateway_handler_codec.go │ ├── gateway_handler_tar.go │ ├── gateway_handler_unixfs.go │ ├── gateway_handler_unixfs__redirects.go │ ├── gateway_handler_unixfs_dir.go │ ├── gateway_handler_unixfs_file.go │ ├── gateway_indexPage.go │ ├── gateway_test.go │ ├── hostname.go │ ├── hostname_test.go │ ├── lazyseek.go │ ├── lazyseek_test.go │ ├── logs.go │ ├── metrics.go │ ├── metrics_test.go │ ├── mutex_profile.go │ ├── option_test.go │ ├── p2p_proxy.go │ ├── p2p_proxy_test.go │ ├── redirect.go │ └── webui.go ├── corerepo │ ├── gc.go │ └── stat.go ├── coreunix │ ├── add.go │ ├── add_test.go │ ├── metadata.go │ ├── metadata_test.go │ └── test │ │ └── data │ │ ├── colors │ │ └── orange │ │ ├── corps │ │ └── apple │ │ └── fruits │ │ ├── apple │ │ └── orange ├── mock │ └── mock.go └── node │ ├── bitswap.go │ ├── builder.go │ ├── core.go │ ├── dns.go │ ├── graphsync.go │ ├── groups.go │ ├── helpers.go │ ├── helpers │ └── helpers.go │ ├── identity.go │ ├── ipns.go │ ├── libp2p │ ├── addrs.go │ ├── discovery.go │ ├── dns.go │ ├── fd │ │ ├── sys_not_unix.go │ │ ├── sys_unix.go │ │ └── sys_windows.go │ ├── filters.go │ ├── host.go │ ├── hostopt.go │ ├── libp2p.go │ ├── libp2p_test.go │ ├── nat.go │ ├── peerstore.go │ ├── pnet.go │ ├── pubsub.go │ ├── rcmgr.go │ ├── rcmgr_defaults.go │ ├── rcmgr_logging.go │ ├── rcmgr_logging_test.go │ ├── rcmgr_metrics.go │ ├── rcmgr_test.go │ ├── relay.go │ ├── routing.go │ ├── routingopt.go │ ├── sec.go │ ├── smux.go │ ├── topicdiscovery.go │ └── transport.go │ ├── peering.go │ ├── provider.go │ └── storage.go ├── coverage ├── .gitignore ├── Rules.mk └── main │ └── main.go ├── doc.go ├── docker-compose.yaml ├── docs ├── AUTHORS ├── EARLY_TESTERS.md ├── PATCH_RELEASE_TEMPLATE.md ├── README.md ├── RELEASE_ISSUE_TEMPLATE.md ├── add-code-flow.md ├── changelogs │ ├── v0.10.md │ ├── v0.11.md │ ├── v0.12.md │ ├── v0.13.md │ ├── v0.14.md │ ├── v0.15.md │ ├── v0.16.md │ ├── v0.17.md │ ├── v0.18.md │ ├── v0.2.md │ ├── v0.3.md │ ├── v0.4.md │ ├── v0.5.md │ ├── v0.6.md │ ├── v0.7.md │ ├── v0.8.md │ └── v0.9.md ├── cli-http-api-core-diagram.png ├── command-completion.md ├── config.md ├── datastores.md ├── debug-guide.md ├── delegated-routing.md ├── developer-certificate-of-origin ├── environment-variables.md ├── examples │ ├── example-folder │ │ ├── ipfs.paper.draft3.pdf │ │ └── test-dir │ │ │ ├── ipfs-logo.png │ │ │ └── ipfs.paper.draft3.pdf │ ├── go-ipfs-as-a-library │ └── kubo-as-a-library │ │ ├── README.md │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ └── main_test.go ├── experimental-features.md ├── file-transfer.md ├── fuse.md ├── gateway.md ├── generate-authors.sh ├── http-rpc-clients.md ├── implement-api-bindings.md ├── libp2p-resource-management.md ├── plugins.md ├── production │ └── reverse-proxy.md ├── releases.md ├── transports.md └── windows.md ├── fuse ├── ipns │ ├── common.go │ ├── ipns_test.go │ ├── ipns_unix.go │ ├── link_unix.go │ └── mount_unix.go ├── mount │ ├── fuse.go │ └── mount.go ├── node │ ├── mount_darwin.go │ ├── mount_nofuse.go │ ├── mount_notsupp.go │ ├── mount_test.go │ ├── mount_unix.go │ └── mount_windows.go └── readonly │ ├── doc.go │ ├── ipfs_test.go │ ├── mount_unix.go │ └── readonly_unix.go ├── gc └── gc.go ├── go.mod ├── go.sum ├── misc ├── README.md ├── launchd │ ├── README.md │ ├── install.sh │ └── io.ipfs.ipfs-daemon.plist └── systemd │ ├── ipfs-api.socket │ ├── ipfs-gateway.socket │ ├── ipfs-hardened.service │ ├── ipfs-sysusers.conf │ └── ipfs.service ├── mk ├── footer.mk ├── git.mk ├── golang.mk ├── header.mk ├── tarball.mk └── util.mk ├── p2p ├── listener.go ├── local.go ├── p2p.go ├── remote.go └── stream.go ├── package-list.json ├── peering ├── peering.go └── peering_test.go ├── phr ├── DownloadFiles │ ├── 1.txt │ ├── 2.txt │ ├── 4.txt │ ├── 5.txt │ ├── bb.txt │ ├── rr.txt │ └── test.txt ├── Makefile ├── PlainFiles │ └── test.txt ├── README.md ├── SerializedData │ ├── SearchableEncryption │ │ ├── InvertedIndex.ser │ │ ├── Msk.ser │ │ ├── Pub.ser │ │ └── UserToken.ser │ └── cpabe │ │ ├── master_key.ser │ │ ├── prv_key.ser │ │ └── pub_key.ser ├── UploadFiles │ └── test.txt ├── app │ ├── app.go │ ├── dialog.go │ ├── file_tab.go │ ├── files.go │ ├── panel.go │ ├── peers.go │ ├── setting.go │ └── upload.go ├── cmd │ └── main.go ├── config │ └── config.go ├── core │ ├── action.go │ ├── file.go │ ├── host_node.go │ ├── ipfs_api.go │ └── searchable_encryption │ │ └── searchable_encryption.go ├── data │ ├── config.json │ ├── key_tab.db │ │ ├── 000002.ldb │ │ ├── 000003.log │ │ ├── CURRENT │ │ ├── CURRENT.bak │ │ ├── LOCK │ │ ├── LOG │ │ └── MANIFEST-000004 │ ├── manifest.json │ └── priv_key ├── err │ └── err.go ├── go.mod ├── go.sum ├── javac │ ├── DecFiles.jar │ ├── FilesSearcher.jar │ ├── FilesUploader.jar │ ├── NodeSearch.jar │ ├── PubAndMskGenerate.jar │ └── 接口说明.md ├── out │ └── sardines.exe ├── router │ └── router.go ├── service │ ├── chat.go │ ├── join.go │ ├── ktab_distribute.go │ └── service.go ├── storage │ ├── ktable.go │ ├── ktable_test.go │ └── store.go └── tool │ ├── file.go │ └── peer_node.go ├── plugin ├── Rules.mk ├── daemon.go ├── daemoninternal.go ├── datastore.go ├── fx.go ├── ipld.go ├── loader │ ├── Rules.mk │ ├── load_nocgo.go │ ├── load_noplugin.go │ ├── load_unix.go │ ├── loader.go │ ├── preload.go │ ├── preload.sh │ └── preload_list ├── plugin.go ├── plugins │ ├── .gitignore │ ├── Rules.mk │ ├── badgerds │ │ └── badgerds.go │ ├── dagjose │ │ └── dagjose.go │ ├── flatfs │ │ └── flatfs.go │ ├── fxtest │ │ └── fxtest.go │ ├── gen_main.sh │ ├── git │ │ └── git.go │ ├── levelds │ │ └── levelds.go │ └── peerlog │ │ ├── peerlog.go │ │ └── peerlog_test.go └── tracer.go ├── profile ├── goroutines.go ├── profile.go └── profile_test.go ├── repo ├── common │ ├── common.go │ └── common_test.go ├── fsrepo │ ├── config_test.go │ ├── datastores.go │ ├── doc.go │ ├── fsrepo.go │ ├── fsrepo_test.go │ ├── migrations │ │ ├── fetch.go │ │ ├── fetch_test.go │ │ ├── fetcher.go │ │ ├── httpfetcher.go │ │ ├── ipfsdir.go │ │ ├── ipfsdir_test.go │ │ ├── ipfsfetcher │ │ │ ├── ipfsfetcher.go │ │ │ └── ipfsfetcher_test.go │ │ ├── migrations.go │ │ ├── migrations_test.go │ │ ├── retryfetcher.go │ │ ├── unpack.go │ │ ├── unpack_test.go │ │ ├── versions.go │ │ └── versions_test.go │ └── misc.go ├── mock.go ├── onlyone.go └── repo.go ├── routing ├── composer.go ├── delegated.go ├── delegated_test.go ├── error.go └── wrapper.go ├── tar └── format.go ├── test ├── .gitignore ├── 3nodetest │ ├── GNUmakefile │ ├── README.md │ ├── bin │ │ ├── .gitignore │ │ ├── clean.sh │ │ ├── save_logs.sh │ │ └── save_profiling_data.sh │ ├── bootstrap │ │ ├── Dockerfile │ │ ├── README.md │ │ └── config │ ├── build │ │ ├── .gitignore │ │ └── .gitkeep │ ├── client │ │ ├── Dockerfile │ │ ├── config │ │ └── run.sh │ ├── data │ │ ├── .gitignore │ │ └── Dockerfile │ ├── fig.yml │ ├── run-test-on-img.sh │ └── server │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── config │ │ └── run.sh ├── README.md ├── Rules.mk ├── api-startup │ └── main.go ├── bench │ ├── bench_cli_ipfs_add │ │ └── main.go │ └── offline_add │ │ └── main.go ├── bin │ ├── .gitignore │ ├── Rules.mk │ ├── checkflags │ └── continueyn ├── cli │ ├── basic_commands_test.go │ ├── completion_test.go │ ├── delegated_routing_http_test.go │ ├── harness │ │ ├── buffer.go │ │ ├── harness.go │ │ ├── ipfs.go │ │ ├── node.go │ │ ├── nodes.go │ │ └── run.go │ ├── init_test.go │ ├── ping_test.go │ ├── pins_test.go │ └── testutils │ │ ├── cids.go │ │ ├── files.go │ │ ├── json.go │ │ ├── random.go │ │ ├── requires.go │ │ └── strings.go ├── dependencies │ ├── GNUmakefile │ ├── dependencies.go │ ├── go-sleep │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── go-sleep.go │ ├── go-timeout │ │ ├── .gitignore │ │ ├── LICENSE │ │ └── main.go │ ├── go.mod │ ├── go.sum │ ├── graphsync-get │ │ └── graphsync-get.go │ ├── iptb │ │ └── iptb.go │ ├── ma-pipe-unidir │ │ ├── LICENSE │ │ └── main.go │ └── pollEndpoint │ │ └── main.go ├── integration │ ├── GNUmakefile │ ├── addcat_test.go │ ├── bench_cat_test.go │ ├── bench_test.go │ ├── bitswap_wo_routing_test.go │ ├── pubsub_msg_seen_cache_test.go │ ├── three_legged_cat_test.go │ └── wan_lan_dht_test.go ├── ipfs-test-lib.sh ├── sharness │ ├── .gitignore │ ├── GNUmakefile │ ├── README.md │ ├── Rules.mk │ ├── lib │ │ ├── 0001-Generate-partial-JUnit-reports.patch │ │ ├── gen-junit-report.sh │ │ ├── install-sharness.sh │ │ ├── iptb-lib.sh │ │ ├── test-aggregate-results.sh │ │ ├── test-lib-hashes.sh │ │ └── test-lib.sh │ ├── t0001-tests-work.sh │ ├── t0012-completion-fish.sh │ ├── t0015-basic-sh-functions.sh │ ├── t0018-indent.sh │ ├── t0021-config.sh │ ├── t0022-init-default.sh │ ├── t0023-shutdown.sh │ ├── t0024-datastore-config.sh │ ├── t0024-files │ │ ├── spec-newshardfun │ │ └── spec-nosync │ ├── t0025-datastores.sh │ ├── t0026-id.sh │ ├── t0027-rotate.sh │ ├── t0030-mount.sh │ ├── t0031-mount-publish.sh │ ├── t0032-mount-sharded.sh │ ├── t0040-add-and-cat.sh │ ├── t0041-ping.sh │ ├── t0042-add-skip.sh │ ├── t0043-add-w.sh │ ├── t0044-add-symlink.sh │ ├── t0045-ls.sh │ ├── t0046-id-hash.sh │ ├── t0050-block.sh │ ├── t0051-object-data │ │ ├── UTF-8-test.txt │ │ ├── brokenPut.json │ │ ├── brokenPut.xml │ │ ├── expected_getOut │ │ ├── mixed.json │ │ ├── testPut.json │ │ ├── testPut.pb │ │ └── testPut.xml │ ├── t0051-object.sh │ ├── t0052-object-diff.sh │ ├── t0053-dag-data │ │ └── non-canon.cbor │ ├── t0053-dag.sh │ ├── t0054-dag-car-import-export-data │ │ ├── README.md │ │ └── test_dataset_car.tar.xz │ ├── t0054-dag-car-import-export.sh │ ├── t0055-dag-put-json-new-line.sh │ ├── t0060-daemon.sh │ ├── t0060-data │ │ ├── mss-noise │ │ ├── mss-plaintext │ │ └── mss-tls │ ├── t0061-daemon-opts.sh │ ├── t0062-daemon-api.sh │ ├── t0063-daemon-init.sh │ ├── t0063-external.sh │ ├── t0064-api-file.sh │ ├── t0065-active-requests.sh │ ├── t0066-migration.sh │ ├── t0067-unix-api.sh │ ├── t0070-user-config.sh │ ├── t0080-repo.sh │ ├── t0081-repo-pinning.sh │ ├── t0082-repo-gc-auto.sh │ ├── t0084-repo-read-rehash.sh │ ├── t0086-repo-verify.sh │ ├── t0087-repo-robust-gc.sh │ ├── t0088-repo-stat-symlink.sh │ ├── t0090-get.sh │ ├── t0095-refs.sh │ ├── t0100-name.sh │ ├── t0101-iptb-name.sh │ ├── t0109-gateway-web-_redirects-data │ │ └── redirects.car │ ├── t0109-gateway-web-_redirects.sh │ ├── t0110-gateway-data │ │ ├── foo.block │ │ └── foofoo.block │ ├── t0110-gateway.sh │ ├── t0111-gateway-writeable.sh │ ├── t0112-gateway-cors.sh │ ├── t0113-gateway-symlink.sh │ ├── t0114-gateway-subdomains.sh │ ├── t0115-gateway-dir-listing.sh │ ├── t0116-gateway-cache.sh │ ├── t0116-prometheus-data │ │ ├── prometheus_metrics │ │ └── prometheus_metrics_added_by_enabling_rcmgr │ ├── t0117-gateway-block.sh │ ├── t0118-gateway-car.sh │ ├── t0118-gateway-car │ │ ├── README.md │ │ ├── carv1-basic.car │ │ └── carv1-basic.json │ ├── t0119-prometheus.sh │ ├── t0120-bootstrap.sh │ ├── t0121-bootstrap-iptb.sh │ ├── t0122-gateway-tar-data │ │ ├── inside-root.car │ │ └── outside-root.car │ ├── t0122-gateway-tar.sh │ ├── t0123-gateway-json-cbor.sh │ ├── t0123-gateway-json-cbor │ │ ├── dag-cbor-traversal.car │ │ ├── dag-json-traversal.car │ │ ├── dag-pb.car │ │ └── dag-pb.json │ ├── t0125-twonode.sh │ ├── t0130-multinode.sh │ ├── t0131-multinode-client-routing.sh │ ├── t0139-swarm-rcmgr.sh │ ├── t0140-swarm.sh │ ├── t0141-addfilter.sh │ ├── t0142-testfilter.sh │ ├── t0150-clisuggest.sh │ ├── t0151-sysdiag.sh │ ├── t0152-profile.sh │ ├── t0160-resolve.sh │ ├── t0165-keystore-data │ │ ├── README.md │ │ ├── openssl_ed25519.pem │ │ ├── openssl_rsa.pem │ │ └── openssl_secp384r1.pem │ ├── t0165-keystore.sh │ ├── t0170-legacy-dht.sh │ ├── t0170-routing-dht.sh │ ├── t0171-peering.sh │ ├── t0175-provider.sh │ ├── t0175-reprovider.sh │ ├── t0175-strategic-provider.sh │ ├── t0180-p2p.sh │ ├── t0181-private-network.sh │ ├── t0182-circuit-relay.sh │ ├── t0183-namesys-pubsub.sh │ ├── t0184-http-proxy-over-p2p.sh │ ├── t0185-autonat.sh │ ├── t0190-quic-ping.sh │ ├── t0191-webtransport-ping.sh │ ├── t0195-noise.sh │ ├── t0200-unixfs-ls.sh │ ├── t0210-tar.sh │ ├── t0220-bitswap.sh │ ├── t0221-graphsync.sh │ ├── t0230-channel-streaming-http-content-type.sh │ ├── t0231-channel-streaming.sh │ ├── t0235-cli-request.sh │ ├── t0236-cli-api-dns-resolve.sh │ ├── t0240-republisher.sh │ ├── t0250-files-api.sh │ ├── t0251-files-flushing.sh │ ├── t0252-files-gc.sh │ ├── t0260-sharding.sh │ ├── t0270-filestore.sh │ ├── t0271-filestore-utils.sh │ ├── t0272-urlstore.sh │ ├── t0275-cid-security-data │ │ ├── CIQG6PGTD2VV34S33BE4MNCQITBRFYUPYQLDXYARR3DQW37MOT7K5XI.data │ │ └── EICEM7ITSI.data │ ├── t0275-cid-security.sh │ ├── t0276-cidv0v1.sh │ ├── t0280-plugin-dag-jose-data │ │ ├── dag-cbor │ │ │ ├── bafyreicxyzuqbx5yb7ytkgkuofwksbal3ygtswxuri25crxdxms55m5fki │ │ │ ├── bafyreihdfxoshbhowufyvjk7kq46dt6h7u6byejmlnifz34z7ocoq7ugk4 │ │ │ └── bafyreihkt4u6euddfhofkutfzxwet7w7zm5qrjpop655yhnb5dnzqw26lm │ │ ├── dag-jose │ │ │ ├── bagcqcera542h3xc57nudkgjcceexyzyxrkwi4ikbn773ag6dqdcyjt6z6rga │ │ │ ├── bagcqcera5uvz2qai6l4vmqjigwpowluilxngz3dyjnva2s3uwbfb5u4ao4fa │ │ │ ├── bagcqcera7azagcqlpu4ivvh4xp4iv6psmb5d7eki6ln3fnfnsnbb2hzv4nxq │ │ │ ├── bagcqcerakjv2mmdlbai3urym22bw5kaw7nqov73yaxf6xjnp7e56sclsrooa │ │ │ ├── bagcqceraqfknq7xaemcihmq2albau32ttrutxnco7xeoik6mlejismmvw5zq │ │ │ ├── bagcqcerauben4l6ee2wjf2fnkj7vaels4p7lnytenk35j3gl2lzcbtbgyoea │ │ │ ├── bagcqceravvw4bx7jgkxxjwfuqo2yoja6w4cmvmu3gkew3s7yu3vt2ce7riwa │ │ │ ├── bagcqceraxazmu67crshzqdeg3kwnfschs25epy5sbtqtjre2qw3d62kzplva │ │ │ └── bagcqceraxvt5izt4sz7kjfrm42dxrutp6ijywgsacllkznzekmfojypkvfea │ │ └── dag-json │ │ │ ├── baguqeeraloya3qpa25kl5l4y3bzgl7rhyta2p7lwaocyxx4vpvdligb7mt2q │ │ │ ├── baguqeeraovfm3rr3pvmxm27zgvxp5wycbfih35xih2uznminpnds5esm4jlq │ │ │ └── baguqeeravexfd6qijjtnzxfqq6kgknnkncztgmvhjhxm6ih352qskolt2gxa │ ├── t0280-plugin-dag-jose.sh │ ├── t0280-plugin-data │ │ └── example.go │ ├── t0280-plugin-fx.sh │ ├── t0280-plugin-git-data │ │ └── git.tar.gz │ ├── t0280-plugin-git.sh │ ├── t0280-plugin-peerlog.sh │ ├── t0280-plugin.sh │ ├── t0290-cid.sh │ ├── t0295-multibase.sh │ ├── t0300-docker-image.sh │ ├── t0301-docker-migrate.sh │ ├── t0310-tracing.sh │ ├── t0320-pubsub.sh │ ├── t0321-pubsub-gossipsub.sh │ ├── t0322-pubsub-http-rpc.sh │ ├── t0400-api-no-gateway.sh │ ├── t0401-api-browser-security.sh │ ├── t0410-api-add.sh │ ├── t0500-issues-and-regressions-offline.sh │ ├── t0600-issues-and-regressions-online.sh │ ├── t0700-remotepin.sh │ ├── t0701-delegated-routing-reframe.sh │ ├── t0701-delegated-routing-reframe │ │ ├── FindProvidersRequest │ │ └── FindProvidersResponse │ ├── t0702-delegated-routing-http │ │ └── FindProvidersResponse │ ├── t0800-blake3.sh │ └── x0601-pin-fail-test.sh ├── sharness_test_coverage_helper.sh └── unit │ ├── .gitignore │ └── Rules.mk ├── testplans └── bitswap │ ├── _compositions │ ├── large-k8s.toml │ ├── medium-k8s.toml │ ├── small-docker.toml │ └── small-k8s.toml │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── manifest.toml ├── thirdparty ├── README.md ├── assert │ └── assert.go ├── dir │ └── dir.go ├── notifier │ ├── notifier.go │ └── notifier_test.go ├── unit │ ├── unit.go │ └── unit_test.go └── verifbs │ └── verifbs.go ├── tracing ├── doc.go ├── file_exporter.go └── tracing.go └── version.go /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/.circleci/main.yml -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/.github/ISSUE_TEMPLATE/doc.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/.github/ISSUE_TEMPLATE/enhancement.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/auto-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/.github/auto-comment.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.github/workflows/golang-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/.github/workflows/golang-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/sync-release-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/.github/workflows/sync-release-assets.yml -------------------------------------------------------------------------------- /.github/workflows/testground-on-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/.github/workflows/testground-on-push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/.mailmap -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/Dockerfile -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/GNUmakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/Makefile -------------------------------------------------------------------------------- /README.Fork.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/README.Fork.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/README_CN.md -------------------------------------------------------------------------------- /Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/Rules.mk -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/SECURITY.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/appveyor.yml -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/assets/README.md -------------------------------------------------------------------------------- /assets/assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/assets/assets.go -------------------------------------------------------------------------------- /assets/dag-index-html/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/assets/dag-index-html/README.md -------------------------------------------------------------------------------- /assets/dag-index-html/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/assets/dag-index-html/index.go -------------------------------------------------------------------------------- /assets/dir-index-html/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/assets/dir-index-html/README.md -------------------------------------------------------------------------------- /assets/dir-index-html/dir-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/assets/dir-index-html/dir-index.html -------------------------------------------------------------------------------- /assets/dir-index-html/index.go: -------------------------------------------------------------------------------- 1 | package dirindexhtml 2 | -------------------------------------------------------------------------------- /assets/dir-index-html/knownIcons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/assets/dir-index-html/knownIcons.txt -------------------------------------------------------------------------------- /assets/dir-index-html/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/assets/dir-index-html/package.json -------------------------------------------------------------------------------- /assets/dir-index-html/src/dir-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/assets/dir-index-html/src/dir-index.html -------------------------------------------------------------------------------- /assets/dir-index-html/src/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/assets/dir-index-html/src/icons.css -------------------------------------------------------------------------------- /assets/dir-index-html/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/assets/dir-index-html/src/style.css -------------------------------------------------------------------------------- /assets/dir-index-html/test/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/ipfs/dir-index-html/test 2 | 3 | go 1.17 4 | -------------------------------------------------------------------------------- /assets/dir-index-html/test/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/assets/dir-index-html/test/main.go -------------------------------------------------------------------------------- /assets/init-doc/about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/assets/init-doc/about -------------------------------------------------------------------------------- /assets/init-doc/contact: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/assets/init-doc/contact -------------------------------------------------------------------------------- /assets/init-doc/docs/index: -------------------------------------------------------------------------------- 1 | Index 2 | -------------------------------------------------------------------------------- /assets/init-doc/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/assets/init-doc/help -------------------------------------------------------------------------------- /assets/init-doc/ping: -------------------------------------------------------------------------------- 1 | ipfs -------------------------------------------------------------------------------- /assets/init-doc/quick-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/assets/init-doc/quick-start -------------------------------------------------------------------------------- /assets/init-doc/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/assets/init-doc/readme -------------------------------------------------------------------------------- /assets/init-doc/security-notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/assets/init-doc/security-notes -------------------------------------------------------------------------------- /bin/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/bin/Rules.mk -------------------------------------------------------------------------------- /bin/archive-branches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/bin/archive-branches.sh -------------------------------------------------------------------------------- /bin/check_go_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/bin/check_go_version -------------------------------------------------------------------------------- /bin/check_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/bin/check_version -------------------------------------------------------------------------------- /bin/container_daemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/bin/container_daemon -------------------------------------------------------------------------------- /bin/container_init_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/bin/container_init_run -------------------------------------------------------------------------------- /bin/dist_get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/bin/dist_get -------------------------------------------------------------------------------- /bin/gencmdref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/bin/gencmdref -------------------------------------------------------------------------------- /bin/get-docker-tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/bin/get-docker-tags.sh -------------------------------------------------------------------------------- /bin/graphmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/bin/graphmd -------------------------------------------------------------------------------- /bin/ipns-republish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/bin/ipns-republish -------------------------------------------------------------------------------- /bin/maketarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/bin/maketarball.sh -------------------------------------------------------------------------------- /bin/mkreleaselog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/bin/mkreleaselog -------------------------------------------------------------------------------- /bin/push-docker-tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/bin/push-docker-tags.sh -------------------------------------------------------------------------------- /bin/test-go-fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/bin/test-go-fmt -------------------------------------------------------------------------------- /blocks/blockstoreutil/remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/blocks/blockstoreutil/remove.go -------------------------------------------------------------------------------- /cmd/ipfs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/.gitignore -------------------------------------------------------------------------------- /cmd/ipfs/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/Rules.mk -------------------------------------------------------------------------------- /cmd/ipfs/add_migrations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/add_migrations.go -------------------------------------------------------------------------------- /cmd/ipfs/daemon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/daemon.go -------------------------------------------------------------------------------- /cmd/ipfs/daemon_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/daemon_linux.go -------------------------------------------------------------------------------- /cmd/ipfs/daemon_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/daemon_other.go -------------------------------------------------------------------------------- /cmd/ipfs/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/debug.go -------------------------------------------------------------------------------- /cmd/ipfs/dist/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/dist/LICENSE -------------------------------------------------------------------------------- /cmd/ipfs/dist/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/dist/LICENSE-APACHE -------------------------------------------------------------------------------- /cmd/ipfs/dist/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/dist/LICENSE-MIT -------------------------------------------------------------------------------- /cmd/ipfs/dist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/dist/README.md -------------------------------------------------------------------------------- /cmd/ipfs/dist/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/dist/install.sh -------------------------------------------------------------------------------- /cmd/ipfs/dnsresolve_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/dnsresolve_test.go -------------------------------------------------------------------------------- /cmd/ipfs/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/init.go -------------------------------------------------------------------------------- /cmd/ipfs/ipfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/ipfs.go -------------------------------------------------------------------------------- /cmd/ipfs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/main.go -------------------------------------------------------------------------------- /cmd/ipfs/pinmfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/pinmfs.go -------------------------------------------------------------------------------- /cmd/ipfs/pinmfs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/pinmfs_test.go -------------------------------------------------------------------------------- /cmd/ipfs/runmain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/runmain_test.go -------------------------------------------------------------------------------- /cmd/ipfs/util/signal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/util/signal.go -------------------------------------------------------------------------------- /cmd/ipfs/util/signal_wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/util/signal_wasm.go -------------------------------------------------------------------------------- /cmd/ipfs/util/ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/util/ui.go -------------------------------------------------------------------------------- /cmd/ipfs/util/ui_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/util/ui_windows.go -------------------------------------------------------------------------------- /cmd/ipfs/util/ulimit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/util/ulimit.go -------------------------------------------------------------------------------- /cmd/ipfs/util/ulimit_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/util/ulimit_freebsd.go -------------------------------------------------------------------------------- /cmd/ipfs/util/ulimit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/util/ulimit_test.go -------------------------------------------------------------------------------- /cmd/ipfs/util/ulimit_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/util/ulimit_unix.go -------------------------------------------------------------------------------- /cmd/ipfs/util/ulimit_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfs/util/ulimit_windows.go -------------------------------------------------------------------------------- /cmd/ipfswatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfswatch/README.md -------------------------------------------------------------------------------- /cmd/ipfswatch/ipfswatch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfswatch/ipfswatch_test.go -------------------------------------------------------------------------------- /cmd/ipfswatch/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/cmd/ipfswatch/main.go -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/codecov.yml -------------------------------------------------------------------------------- /commands/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/commands/context.go -------------------------------------------------------------------------------- /commands/reqlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/commands/reqlog.go -------------------------------------------------------------------------------- /config/addresses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/addresses.go -------------------------------------------------------------------------------- /config/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/api.go -------------------------------------------------------------------------------- /config/autonat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/autonat.go -------------------------------------------------------------------------------- /config/bootstrap_peers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/bootstrap_peers.go -------------------------------------------------------------------------------- /config/bootstrap_peers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/bootstrap_peers_test.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/config.go -------------------------------------------------------------------------------- /config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/config_test.go -------------------------------------------------------------------------------- /config/datastore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/datastore.go -------------------------------------------------------------------------------- /config/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/discovery.go -------------------------------------------------------------------------------- /config/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/dns.go -------------------------------------------------------------------------------- /config/experiments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/experiments.go -------------------------------------------------------------------------------- /config/gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/gateway.go -------------------------------------------------------------------------------- /config/identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/identity.go -------------------------------------------------------------------------------- /config/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/init.go -------------------------------------------------------------------------------- /config/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/init_test.go -------------------------------------------------------------------------------- /config/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/internal.go -------------------------------------------------------------------------------- /config/ipns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/ipns.go -------------------------------------------------------------------------------- /config/migration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/migration.go -------------------------------------------------------------------------------- /config/migration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/migration_test.go -------------------------------------------------------------------------------- /config/mounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/mounts.go -------------------------------------------------------------------------------- /config/peering.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/peering.go -------------------------------------------------------------------------------- /config/plugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/plugins.go -------------------------------------------------------------------------------- /config/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/profile.go -------------------------------------------------------------------------------- /config/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/provider.go -------------------------------------------------------------------------------- /config/pubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/pubsub.go -------------------------------------------------------------------------------- /config/remotepin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/remotepin.go -------------------------------------------------------------------------------- /config/reprovider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/reprovider.go -------------------------------------------------------------------------------- /config/routing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/routing.go -------------------------------------------------------------------------------- /config/routing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/routing_test.go -------------------------------------------------------------------------------- /config/serialize/serialize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/serialize/serialize.go -------------------------------------------------------------------------------- /config/serialize/serialize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/serialize/serialize_test.go -------------------------------------------------------------------------------- /config/swarm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/swarm.go -------------------------------------------------------------------------------- /config/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/types.go -------------------------------------------------------------------------------- /config/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/config/types_test.go -------------------------------------------------------------------------------- /core/.gitignore: -------------------------------------------------------------------------------- 1 | .testdb 2 | -------------------------------------------------------------------------------- /core/bootstrap/bootstrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/bootstrap/bootstrap.go -------------------------------------------------------------------------------- /core/bootstrap/bootstrap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/bootstrap/bootstrap_test.go -------------------------------------------------------------------------------- /core/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/builder.go -------------------------------------------------------------------------------- /core/commands/active.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/active.go -------------------------------------------------------------------------------- /core/commands/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/add.go -------------------------------------------------------------------------------- /core/commands/bitswap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/bitswap.go -------------------------------------------------------------------------------- /core/commands/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/block.go -------------------------------------------------------------------------------- /core/commands/bootstrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/bootstrap.go -------------------------------------------------------------------------------- /core/commands/cat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/cat.go -------------------------------------------------------------------------------- /core/commands/cid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/cid.go -------------------------------------------------------------------------------- /core/commands/cmdenv/cidbase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/cmdenv/cidbase.go -------------------------------------------------------------------------------- /core/commands/cmdenv/cidbase_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/cmdenv/cidbase_test.go -------------------------------------------------------------------------------- /core/commands/cmdenv/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/cmdenv/env.go -------------------------------------------------------------------------------- /core/commands/cmdenv/env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/cmdenv/env_test.go -------------------------------------------------------------------------------- /core/commands/cmdenv/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/cmdenv/file.go -------------------------------------------------------------------------------- /core/commands/cmdutils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/cmdutils/utils.go -------------------------------------------------------------------------------- /core/commands/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/commands.go -------------------------------------------------------------------------------- /core/commands/commands_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/commands_test.go -------------------------------------------------------------------------------- /core/commands/completion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/completion.go -------------------------------------------------------------------------------- /core/commands/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/config.go -------------------------------------------------------------------------------- /core/commands/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/config_test.go -------------------------------------------------------------------------------- /core/commands/dag/dag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/dag/dag.go -------------------------------------------------------------------------------- /core/commands/dag/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/dag/export.go -------------------------------------------------------------------------------- /core/commands/dag/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/dag/get.go -------------------------------------------------------------------------------- /core/commands/dag/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/dag/import.go -------------------------------------------------------------------------------- /core/commands/dag/put.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/dag/put.go -------------------------------------------------------------------------------- /core/commands/dag/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/dag/resolve.go -------------------------------------------------------------------------------- /core/commands/dag/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/dag/stat.go -------------------------------------------------------------------------------- /core/commands/dht.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/dht.go -------------------------------------------------------------------------------- /core/commands/dht_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/dht_test.go -------------------------------------------------------------------------------- /core/commands/diag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/diag.go -------------------------------------------------------------------------------- /core/commands/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/dns.go -------------------------------------------------------------------------------- /core/commands/e/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/e/error.go -------------------------------------------------------------------------------- /core/commands/external.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/external.go -------------------------------------------------------------------------------- /core/commands/extra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/extra.go -------------------------------------------------------------------------------- /core/commands/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/files.go -------------------------------------------------------------------------------- /core/commands/filestore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/filestore.go -------------------------------------------------------------------------------- /core/commands/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/get.go -------------------------------------------------------------------------------- /core/commands/get_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/get_test.go -------------------------------------------------------------------------------- /core/commands/helptext_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/helptext_test.go -------------------------------------------------------------------------------- /core/commands/id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/id.go -------------------------------------------------------------------------------- /core/commands/keyencode/keyencode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/keyencode/keyencode.go -------------------------------------------------------------------------------- /core/commands/keystore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/keystore.go -------------------------------------------------------------------------------- /core/commands/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/log.go -------------------------------------------------------------------------------- /core/commands/ls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/ls.go -------------------------------------------------------------------------------- /core/commands/mount_nofuse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/mount_nofuse.go -------------------------------------------------------------------------------- /core/commands/mount_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/mount_unix.go -------------------------------------------------------------------------------- /core/commands/mount_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/mount_windows.go -------------------------------------------------------------------------------- /core/commands/multibase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/multibase.go -------------------------------------------------------------------------------- /core/commands/name/ipns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/name/ipns.go -------------------------------------------------------------------------------- /core/commands/name/ipnsps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/name/ipnsps.go -------------------------------------------------------------------------------- /core/commands/name/name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/name/name.go -------------------------------------------------------------------------------- /core/commands/name/publish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/name/publish.go -------------------------------------------------------------------------------- /core/commands/object/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/object/diff.go -------------------------------------------------------------------------------- /core/commands/object/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/object/object.go -------------------------------------------------------------------------------- /core/commands/object/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/object/patch.go -------------------------------------------------------------------------------- /core/commands/p2p.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/p2p.go -------------------------------------------------------------------------------- /core/commands/pin/pin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/pin/pin.go -------------------------------------------------------------------------------- /core/commands/pin/remotepin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/pin/remotepin.go -------------------------------------------------------------------------------- /core/commands/pin/remotepin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/pin/remotepin_test.go -------------------------------------------------------------------------------- /core/commands/ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/ping.go -------------------------------------------------------------------------------- /core/commands/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/profile.go -------------------------------------------------------------------------------- /core/commands/pubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/pubsub.go -------------------------------------------------------------------------------- /core/commands/refs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/refs.go -------------------------------------------------------------------------------- /core/commands/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/repo.go -------------------------------------------------------------------------------- /core/commands/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/resolve.go -------------------------------------------------------------------------------- /core/commands/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/root.go -------------------------------------------------------------------------------- /core/commands/root_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/root_test.go -------------------------------------------------------------------------------- /core/commands/routing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/routing.go -------------------------------------------------------------------------------- /core/commands/shutdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/shutdown.go -------------------------------------------------------------------------------- /core/commands/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/stat.go -------------------------------------------------------------------------------- /core/commands/stat_dht.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/stat_dht.go -------------------------------------------------------------------------------- /core/commands/stat_provide.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/stat_provide.go -------------------------------------------------------------------------------- /core/commands/swarm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/swarm.go -------------------------------------------------------------------------------- /core/commands/sysdiag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/sysdiag.go -------------------------------------------------------------------------------- /core/commands/tar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/tar.go -------------------------------------------------------------------------------- /core/commands/unixfs/ls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/unixfs/ls.go -------------------------------------------------------------------------------- /core/commands/unixfs/unixfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/unixfs/unixfs.go -------------------------------------------------------------------------------- /core/commands/urlstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/urlstore.go -------------------------------------------------------------------------------- /core/commands/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/commands/version.go -------------------------------------------------------------------------------- /core/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/core.go -------------------------------------------------------------------------------- /core/core_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/core_test.go -------------------------------------------------------------------------------- /core/coreapi/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/coreapi/block.go -------------------------------------------------------------------------------- /core/coreapi/coreapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/coreapi/coreapi.go -------------------------------------------------------------------------------- /core/coreapi/dag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/coreapi/dag.go -------------------------------------------------------------------------------- /core/coreapi/dht.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/coreapi/dht.go -------------------------------------------------------------------------------- /core/coreapi/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/coreapi/key.go -------------------------------------------------------------------------------- /core/coreapi/name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/coreapi/name.go -------------------------------------------------------------------------------- /core/coreapi/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/coreapi/object.go -------------------------------------------------------------------------------- /core/coreapi/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/coreapi/path.go -------------------------------------------------------------------------------- /core/coreapi/pin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/coreapi/pin.go -------------------------------------------------------------------------------- /core/coreapi/pubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/coreapi/pubsub.go -------------------------------------------------------------------------------- /core/coreapi/swarm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/coreapi/swarm.go -------------------------------------------------------------------------------- /core/coreapi/test/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/coreapi/test/api_test.go -------------------------------------------------------------------------------- /core/coreapi/test/path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/coreapi/test/path_test.go -------------------------------------------------------------------------------- /core/coreapi/unixfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/coreapi/unixfs.go -------------------------------------------------------------------------------- /core/corehttp/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/commands.go -------------------------------------------------------------------------------- /core/corehttp/corehttp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/corehttp.go -------------------------------------------------------------------------------- /core/corehttp/gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/gateway.go -------------------------------------------------------------------------------- /core/corehttp/gateway_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/gateway_handler.go -------------------------------------------------------------------------------- /core/corehttp/gateway_handler_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/gateway_handler_block.go -------------------------------------------------------------------------------- /core/corehttp/gateway_handler_car.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/gateway_handler_car.go -------------------------------------------------------------------------------- /core/corehttp/gateway_handler_codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/gateway_handler_codec.go -------------------------------------------------------------------------------- /core/corehttp/gateway_handler_tar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/gateway_handler_tar.go -------------------------------------------------------------------------------- /core/corehttp/gateway_handler_unixfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/gateway_handler_unixfs.go -------------------------------------------------------------------------------- /core/corehttp/gateway_handler_unixfs__redirects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/gateway_handler_unixfs__redirects.go -------------------------------------------------------------------------------- /core/corehttp/gateway_handler_unixfs_dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/gateway_handler_unixfs_dir.go -------------------------------------------------------------------------------- /core/corehttp/gateway_handler_unixfs_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/gateway_handler_unixfs_file.go -------------------------------------------------------------------------------- /core/corehttp/gateway_indexPage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/gateway_indexPage.go -------------------------------------------------------------------------------- /core/corehttp/gateway_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/gateway_test.go -------------------------------------------------------------------------------- /core/corehttp/hostname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/hostname.go -------------------------------------------------------------------------------- /core/corehttp/hostname_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/hostname_test.go -------------------------------------------------------------------------------- /core/corehttp/lazyseek.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/lazyseek.go -------------------------------------------------------------------------------- /core/corehttp/lazyseek_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/lazyseek_test.go -------------------------------------------------------------------------------- /core/corehttp/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/logs.go -------------------------------------------------------------------------------- /core/corehttp/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/metrics.go -------------------------------------------------------------------------------- /core/corehttp/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/metrics_test.go -------------------------------------------------------------------------------- /core/corehttp/mutex_profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/mutex_profile.go -------------------------------------------------------------------------------- /core/corehttp/option_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/option_test.go -------------------------------------------------------------------------------- /core/corehttp/p2p_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/p2p_proxy.go -------------------------------------------------------------------------------- /core/corehttp/p2p_proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/p2p_proxy_test.go -------------------------------------------------------------------------------- /core/corehttp/redirect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/redirect.go -------------------------------------------------------------------------------- /core/corehttp/webui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corehttp/webui.go -------------------------------------------------------------------------------- /core/corerepo/gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corerepo/gc.go -------------------------------------------------------------------------------- /core/corerepo/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/corerepo/stat.go -------------------------------------------------------------------------------- /core/coreunix/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/coreunix/add.go -------------------------------------------------------------------------------- /core/coreunix/add_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/coreunix/add_test.go -------------------------------------------------------------------------------- /core/coreunix/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/coreunix/metadata.go -------------------------------------------------------------------------------- /core/coreunix/metadata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/coreunix/metadata_test.go -------------------------------------------------------------------------------- /core/coreunix/test/data/colors/orange: -------------------------------------------------------------------------------- 1 | orange 2 | -------------------------------------------------------------------------------- /core/coreunix/test/data/corps/apple: -------------------------------------------------------------------------------- 1 | apple 2 | -------------------------------------------------------------------------------- /core/coreunix/test/data/fruits/apple: -------------------------------------------------------------------------------- 1 | apple 2 | -------------------------------------------------------------------------------- /core/coreunix/test/data/fruits/orange: -------------------------------------------------------------------------------- 1 | orange 2 | -------------------------------------------------------------------------------- /core/mock/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/mock/mock.go -------------------------------------------------------------------------------- /core/node/bitswap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/bitswap.go -------------------------------------------------------------------------------- /core/node/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/builder.go -------------------------------------------------------------------------------- /core/node/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/core.go -------------------------------------------------------------------------------- /core/node/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/dns.go -------------------------------------------------------------------------------- /core/node/graphsync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/graphsync.go -------------------------------------------------------------------------------- /core/node/groups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/groups.go -------------------------------------------------------------------------------- /core/node/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/helpers.go -------------------------------------------------------------------------------- /core/node/helpers/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/helpers/helpers.go -------------------------------------------------------------------------------- /core/node/identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/identity.go -------------------------------------------------------------------------------- /core/node/ipns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/ipns.go -------------------------------------------------------------------------------- /core/node/libp2p/addrs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/addrs.go -------------------------------------------------------------------------------- /core/node/libp2p/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/discovery.go -------------------------------------------------------------------------------- /core/node/libp2p/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/dns.go -------------------------------------------------------------------------------- /core/node/libp2p/fd/sys_not_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/fd/sys_not_unix.go -------------------------------------------------------------------------------- /core/node/libp2p/fd/sys_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/fd/sys_unix.go -------------------------------------------------------------------------------- /core/node/libp2p/fd/sys_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/fd/sys_windows.go -------------------------------------------------------------------------------- /core/node/libp2p/filters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/filters.go -------------------------------------------------------------------------------- /core/node/libp2p/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/host.go -------------------------------------------------------------------------------- /core/node/libp2p/hostopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/hostopt.go -------------------------------------------------------------------------------- /core/node/libp2p/libp2p.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/libp2p.go -------------------------------------------------------------------------------- /core/node/libp2p/libp2p_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/libp2p_test.go -------------------------------------------------------------------------------- /core/node/libp2p/nat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/nat.go -------------------------------------------------------------------------------- /core/node/libp2p/peerstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/peerstore.go -------------------------------------------------------------------------------- /core/node/libp2p/pnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/pnet.go -------------------------------------------------------------------------------- /core/node/libp2p/pubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/pubsub.go -------------------------------------------------------------------------------- /core/node/libp2p/rcmgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/rcmgr.go -------------------------------------------------------------------------------- /core/node/libp2p/rcmgr_defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/rcmgr_defaults.go -------------------------------------------------------------------------------- /core/node/libp2p/rcmgr_logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/rcmgr_logging.go -------------------------------------------------------------------------------- /core/node/libp2p/rcmgr_logging_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/rcmgr_logging_test.go -------------------------------------------------------------------------------- /core/node/libp2p/rcmgr_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/rcmgr_metrics.go -------------------------------------------------------------------------------- /core/node/libp2p/rcmgr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/rcmgr_test.go -------------------------------------------------------------------------------- /core/node/libp2p/relay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/relay.go -------------------------------------------------------------------------------- /core/node/libp2p/routing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/routing.go -------------------------------------------------------------------------------- /core/node/libp2p/routingopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/routingopt.go -------------------------------------------------------------------------------- /core/node/libp2p/sec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/sec.go -------------------------------------------------------------------------------- /core/node/libp2p/smux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/smux.go -------------------------------------------------------------------------------- /core/node/libp2p/topicdiscovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/topicdiscovery.go -------------------------------------------------------------------------------- /core/node/libp2p/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/libp2p/transport.go -------------------------------------------------------------------------------- /core/node/peering.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/peering.go -------------------------------------------------------------------------------- /core/node/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/provider.go -------------------------------------------------------------------------------- /core/node/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/core/node/storage.go -------------------------------------------------------------------------------- /coverage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/coverage/.gitignore -------------------------------------------------------------------------------- /coverage/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/coverage/Rules.mk -------------------------------------------------------------------------------- /coverage/main/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/coverage/main/main.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/doc.go -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/AUTHORS -------------------------------------------------------------------------------- /docs/EARLY_TESTERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/EARLY_TESTERS.md -------------------------------------------------------------------------------- /docs/PATCH_RELEASE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/PATCH_RELEASE_TEMPLATE.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/RELEASE_ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/RELEASE_ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /docs/add-code-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/add-code-flow.md -------------------------------------------------------------------------------- /docs/changelogs/v0.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/changelogs/v0.10.md -------------------------------------------------------------------------------- /docs/changelogs/v0.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/changelogs/v0.11.md -------------------------------------------------------------------------------- /docs/changelogs/v0.12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/changelogs/v0.12.md -------------------------------------------------------------------------------- /docs/changelogs/v0.13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/changelogs/v0.13.md -------------------------------------------------------------------------------- /docs/changelogs/v0.14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/changelogs/v0.14.md -------------------------------------------------------------------------------- /docs/changelogs/v0.15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/changelogs/v0.15.md -------------------------------------------------------------------------------- /docs/changelogs/v0.16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/changelogs/v0.16.md -------------------------------------------------------------------------------- /docs/changelogs/v0.17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/changelogs/v0.17.md -------------------------------------------------------------------------------- /docs/changelogs/v0.18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/changelogs/v0.18.md -------------------------------------------------------------------------------- /docs/changelogs/v0.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/changelogs/v0.2.md -------------------------------------------------------------------------------- /docs/changelogs/v0.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/changelogs/v0.3.md -------------------------------------------------------------------------------- /docs/changelogs/v0.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/changelogs/v0.4.md -------------------------------------------------------------------------------- /docs/changelogs/v0.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/changelogs/v0.5.md -------------------------------------------------------------------------------- /docs/changelogs/v0.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/changelogs/v0.6.md -------------------------------------------------------------------------------- /docs/changelogs/v0.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/changelogs/v0.7.md -------------------------------------------------------------------------------- /docs/changelogs/v0.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/changelogs/v0.8.md -------------------------------------------------------------------------------- /docs/changelogs/v0.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/changelogs/v0.9.md -------------------------------------------------------------------------------- /docs/cli-http-api-core-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/cli-http-api-core-diagram.png -------------------------------------------------------------------------------- /docs/command-completion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/command-completion.md -------------------------------------------------------------------------------- /docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/config.md -------------------------------------------------------------------------------- /docs/datastores.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/datastores.md -------------------------------------------------------------------------------- /docs/debug-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/debug-guide.md -------------------------------------------------------------------------------- /docs/delegated-routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/delegated-routing.md -------------------------------------------------------------------------------- /docs/developer-certificate-of-origin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/developer-certificate-of-origin -------------------------------------------------------------------------------- /docs/environment-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/environment-variables.md -------------------------------------------------------------------------------- /docs/examples/example-folder/ipfs.paper.draft3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/examples/example-folder/ipfs.paper.draft3.pdf -------------------------------------------------------------------------------- /docs/examples/example-folder/test-dir/ipfs-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/examples/example-folder/test-dir/ipfs-logo.png -------------------------------------------------------------------------------- /docs/examples/example-folder/test-dir/ipfs.paper.draft3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/examples/example-folder/test-dir/ipfs.paper.draft3.pdf -------------------------------------------------------------------------------- /docs/examples/go-ipfs-as-a-library: -------------------------------------------------------------------------------- 1 | kubo-as-a-library -------------------------------------------------------------------------------- /docs/examples/kubo-as-a-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/examples/kubo-as-a-library/README.md -------------------------------------------------------------------------------- /docs/examples/kubo-as-a-library/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/examples/kubo-as-a-library/go.mod -------------------------------------------------------------------------------- /docs/examples/kubo-as-a-library/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/examples/kubo-as-a-library/go.sum -------------------------------------------------------------------------------- /docs/examples/kubo-as-a-library/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/examples/kubo-as-a-library/main.go -------------------------------------------------------------------------------- /docs/examples/kubo-as-a-library/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/examples/kubo-as-a-library/main_test.go -------------------------------------------------------------------------------- /docs/experimental-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/experimental-features.md -------------------------------------------------------------------------------- /docs/file-transfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/file-transfer.md -------------------------------------------------------------------------------- /docs/fuse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/fuse.md -------------------------------------------------------------------------------- /docs/gateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/gateway.md -------------------------------------------------------------------------------- /docs/generate-authors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/generate-authors.sh -------------------------------------------------------------------------------- /docs/http-rpc-clients.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/http-rpc-clients.md -------------------------------------------------------------------------------- /docs/implement-api-bindings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/implement-api-bindings.md -------------------------------------------------------------------------------- /docs/libp2p-resource-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/libp2p-resource-management.md -------------------------------------------------------------------------------- /docs/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/plugins.md -------------------------------------------------------------------------------- /docs/production/reverse-proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/production/reverse-proxy.md -------------------------------------------------------------------------------- /docs/releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/releases.md -------------------------------------------------------------------------------- /docs/transports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/transports.md -------------------------------------------------------------------------------- /docs/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/docs/windows.md -------------------------------------------------------------------------------- /fuse/ipns/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/fuse/ipns/common.go -------------------------------------------------------------------------------- /fuse/ipns/ipns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/fuse/ipns/ipns_test.go -------------------------------------------------------------------------------- /fuse/ipns/ipns_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/fuse/ipns/ipns_unix.go -------------------------------------------------------------------------------- /fuse/ipns/link_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/fuse/ipns/link_unix.go -------------------------------------------------------------------------------- /fuse/ipns/mount_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/fuse/ipns/mount_unix.go -------------------------------------------------------------------------------- /fuse/mount/fuse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/fuse/mount/fuse.go -------------------------------------------------------------------------------- /fuse/mount/mount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/fuse/mount/mount.go -------------------------------------------------------------------------------- /fuse/node/mount_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/fuse/node/mount_darwin.go -------------------------------------------------------------------------------- /fuse/node/mount_nofuse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/fuse/node/mount_nofuse.go -------------------------------------------------------------------------------- /fuse/node/mount_notsupp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/fuse/node/mount_notsupp.go -------------------------------------------------------------------------------- /fuse/node/mount_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/fuse/node/mount_test.go -------------------------------------------------------------------------------- /fuse/node/mount_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/fuse/node/mount_unix.go -------------------------------------------------------------------------------- /fuse/node/mount_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/fuse/node/mount_windows.go -------------------------------------------------------------------------------- /fuse/readonly/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/fuse/readonly/doc.go -------------------------------------------------------------------------------- /fuse/readonly/ipfs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/fuse/readonly/ipfs_test.go -------------------------------------------------------------------------------- /fuse/readonly/mount_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/fuse/readonly/mount_unix.go -------------------------------------------------------------------------------- /fuse/readonly/readonly_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/fuse/readonly/readonly_unix.go -------------------------------------------------------------------------------- /gc/gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/gc/gc.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/go.sum -------------------------------------------------------------------------------- /misc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/misc/README.md -------------------------------------------------------------------------------- /misc/launchd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/misc/launchd/README.md -------------------------------------------------------------------------------- /misc/launchd/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/misc/launchd/install.sh -------------------------------------------------------------------------------- /misc/launchd/io.ipfs.ipfs-daemon.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/misc/launchd/io.ipfs.ipfs-daemon.plist -------------------------------------------------------------------------------- /misc/systemd/ipfs-api.socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/misc/systemd/ipfs-api.socket -------------------------------------------------------------------------------- /misc/systemd/ipfs-gateway.socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/misc/systemd/ipfs-gateway.socket -------------------------------------------------------------------------------- /misc/systemd/ipfs-hardened.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/misc/systemd/ipfs-hardened.service -------------------------------------------------------------------------------- /misc/systemd/ipfs-sysusers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/misc/systemd/ipfs-sysusers.conf -------------------------------------------------------------------------------- /misc/systemd/ipfs.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/misc/systemd/ipfs.service -------------------------------------------------------------------------------- /mk/footer.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/mk/footer.mk -------------------------------------------------------------------------------- /mk/git.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/mk/git.mk -------------------------------------------------------------------------------- /mk/golang.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/mk/golang.mk -------------------------------------------------------------------------------- /mk/header.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/mk/header.mk -------------------------------------------------------------------------------- /mk/tarball.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/mk/tarball.mk -------------------------------------------------------------------------------- /mk/util.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/mk/util.mk -------------------------------------------------------------------------------- /p2p/listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/p2p/listener.go -------------------------------------------------------------------------------- /p2p/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/p2p/local.go -------------------------------------------------------------------------------- /p2p/p2p.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/p2p/p2p.go -------------------------------------------------------------------------------- /p2p/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/p2p/remote.go -------------------------------------------------------------------------------- /p2p/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/p2p/stream.go -------------------------------------------------------------------------------- /package-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/package-list.json -------------------------------------------------------------------------------- /peering/peering.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/peering/peering.go -------------------------------------------------------------------------------- /peering/peering_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/peering/peering_test.go -------------------------------------------------------------------------------- /phr/DownloadFiles/1.txt: -------------------------------------------------------------------------------- 1 | 2 | bvQl6ONcrJx+TzRIt5su0A== -------------------------------------------------------------------------------- /phr/DownloadFiles/2.txt: -------------------------------------------------------------------------------- 1 | 2 | IHyZLKcePhLQSwldvBEhFw== -------------------------------------------------------------------------------- /phr/DownloadFiles/4.txt: -------------------------------------------------------------------------------- 1 | 2 | uKZxCPv6K6SnmHdCxBHEBQ== -------------------------------------------------------------------------------- /phr/DownloadFiles/5.txt: -------------------------------------------------------------------------------- 1 | 2 | 2sMe5sKuoKBvZexSl44H8w== -------------------------------------------------------------------------------- /phr/DownloadFiles/bb.txt: -------------------------------------------------------------------------------- 1 | 2 | atLuFWFlSgsPeNiA7F01SQ== -------------------------------------------------------------------------------- /phr/DownloadFiles/rr.txt: -------------------------------------------------------------------------------- 1 | 2 | eTmgXJ8JmHgbQ5qCAJFD3A== -------------------------------------------------------------------------------- /phr/DownloadFiles/test.txt: -------------------------------------------------------------------------------- 1 | 2 | g2dSqHKnbDcTfwwppc6a/g== -------------------------------------------------------------------------------- /phr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/Makefile -------------------------------------------------------------------------------- /phr/PlainFiles/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/PlainFiles/test.txt -------------------------------------------------------------------------------- /phr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/README.md -------------------------------------------------------------------------------- /phr/SerializedData/SearchableEncryption/InvertedIndex.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/SerializedData/SearchableEncryption/InvertedIndex.ser -------------------------------------------------------------------------------- /phr/SerializedData/SearchableEncryption/Msk.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/SerializedData/SearchableEncryption/Msk.ser -------------------------------------------------------------------------------- /phr/SerializedData/SearchableEncryption/Pub.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/SerializedData/SearchableEncryption/Pub.ser -------------------------------------------------------------------------------- /phr/SerializedData/SearchableEncryption/UserToken.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/SerializedData/SearchableEncryption/UserToken.ser -------------------------------------------------------------------------------- /phr/SerializedData/cpabe/master_key.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/SerializedData/cpabe/master_key.ser -------------------------------------------------------------------------------- /phr/SerializedData/cpabe/prv_key.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/SerializedData/cpabe/prv_key.ser -------------------------------------------------------------------------------- /phr/SerializedData/cpabe/pub_key.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/SerializedData/cpabe/pub_key.ser -------------------------------------------------------------------------------- /phr/UploadFiles/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/UploadFiles/test.txt -------------------------------------------------------------------------------- /phr/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/app/app.go -------------------------------------------------------------------------------- /phr/app/dialog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/app/dialog.go -------------------------------------------------------------------------------- /phr/app/file_tab.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/app/file_tab.go -------------------------------------------------------------------------------- /phr/app/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/app/files.go -------------------------------------------------------------------------------- /phr/app/panel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/app/panel.go -------------------------------------------------------------------------------- /phr/app/peers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/app/peers.go -------------------------------------------------------------------------------- /phr/app/setting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/app/setting.go -------------------------------------------------------------------------------- /phr/app/upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/app/upload.go -------------------------------------------------------------------------------- /phr/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/cmd/main.go -------------------------------------------------------------------------------- /phr/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/config/config.go -------------------------------------------------------------------------------- /phr/core/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/core/action.go -------------------------------------------------------------------------------- /phr/core/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/core/file.go -------------------------------------------------------------------------------- /phr/core/host_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/core/host_node.go -------------------------------------------------------------------------------- /phr/core/ipfs_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/core/ipfs_api.go -------------------------------------------------------------------------------- /phr/core/searchable_encryption/searchable_encryption.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/core/searchable_encryption/searchable_encryption.go -------------------------------------------------------------------------------- /phr/data/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/data/config.json -------------------------------------------------------------------------------- /phr/data/key_tab.db/000002.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/data/key_tab.db/000002.ldb -------------------------------------------------------------------------------- /phr/data/key_tab.db/000003.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phr/data/key_tab.db/CURRENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/data/key_tab.db/CURRENT -------------------------------------------------------------------------------- /phr/data/key_tab.db/CURRENT.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/data/key_tab.db/CURRENT.bak -------------------------------------------------------------------------------- /phr/data/key_tab.db/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phr/data/key_tab.db/LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/data/key_tab.db/LOG -------------------------------------------------------------------------------- /phr/data/key_tab.db/MANIFEST-000004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/data/key_tab.db/MANIFEST-000004 -------------------------------------------------------------------------------- /phr/data/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/data/manifest.json -------------------------------------------------------------------------------- /phr/data/priv_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/data/priv_key -------------------------------------------------------------------------------- /phr/err/err.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/err/err.go -------------------------------------------------------------------------------- /phr/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/go.mod -------------------------------------------------------------------------------- /phr/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/go.sum -------------------------------------------------------------------------------- /phr/javac/DecFiles.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/javac/DecFiles.jar -------------------------------------------------------------------------------- /phr/javac/FilesSearcher.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/javac/FilesSearcher.jar -------------------------------------------------------------------------------- /phr/javac/FilesUploader.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/javac/FilesUploader.jar -------------------------------------------------------------------------------- /phr/javac/NodeSearch.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/javac/NodeSearch.jar -------------------------------------------------------------------------------- /phr/javac/PubAndMskGenerate.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/javac/PubAndMskGenerate.jar -------------------------------------------------------------------------------- /phr/javac/接口说明.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/javac/接口说明.md -------------------------------------------------------------------------------- /phr/out/sardines.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/out/sardines.exe -------------------------------------------------------------------------------- /phr/router/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/router/router.go -------------------------------------------------------------------------------- /phr/service/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/service/chat.go -------------------------------------------------------------------------------- /phr/service/join.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/service/join.go -------------------------------------------------------------------------------- /phr/service/ktab_distribute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/service/ktab_distribute.go -------------------------------------------------------------------------------- /phr/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/service/service.go -------------------------------------------------------------------------------- /phr/storage/ktable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/storage/ktable.go -------------------------------------------------------------------------------- /phr/storage/ktable_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/storage/ktable_test.go -------------------------------------------------------------------------------- /phr/storage/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/storage/store.go -------------------------------------------------------------------------------- /phr/tool/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/tool/file.go -------------------------------------------------------------------------------- /phr/tool/peer_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/phr/tool/peer_node.go -------------------------------------------------------------------------------- /plugin/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/Rules.mk -------------------------------------------------------------------------------- /plugin/daemon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/daemon.go -------------------------------------------------------------------------------- /plugin/daemoninternal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/daemoninternal.go -------------------------------------------------------------------------------- /plugin/datastore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/datastore.go -------------------------------------------------------------------------------- /plugin/fx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/fx.go -------------------------------------------------------------------------------- /plugin/ipld.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/ipld.go -------------------------------------------------------------------------------- /plugin/loader/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/loader/Rules.mk -------------------------------------------------------------------------------- /plugin/loader/load_nocgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/loader/load_nocgo.go -------------------------------------------------------------------------------- /plugin/loader/load_noplugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/loader/load_noplugin.go -------------------------------------------------------------------------------- /plugin/loader/load_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/loader/load_unix.go -------------------------------------------------------------------------------- /plugin/loader/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/loader/loader.go -------------------------------------------------------------------------------- /plugin/loader/preload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/loader/preload.go -------------------------------------------------------------------------------- /plugin/loader/preload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/loader/preload.sh -------------------------------------------------------------------------------- /plugin/loader/preload_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/loader/preload_list -------------------------------------------------------------------------------- /plugin/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/plugin.go -------------------------------------------------------------------------------- /plugin/plugins/.gitignore: -------------------------------------------------------------------------------- 1 | *.so 2 | */main 3 | -------------------------------------------------------------------------------- /plugin/plugins/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/plugins/Rules.mk -------------------------------------------------------------------------------- /plugin/plugins/badgerds/badgerds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/plugins/badgerds/badgerds.go -------------------------------------------------------------------------------- /plugin/plugins/dagjose/dagjose.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/plugins/dagjose/dagjose.go -------------------------------------------------------------------------------- /plugin/plugins/flatfs/flatfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/plugins/flatfs/flatfs.go -------------------------------------------------------------------------------- /plugin/plugins/fxtest/fxtest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/plugins/fxtest/fxtest.go -------------------------------------------------------------------------------- /plugin/plugins/gen_main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/plugins/gen_main.sh -------------------------------------------------------------------------------- /plugin/plugins/git/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/plugins/git/git.go -------------------------------------------------------------------------------- /plugin/plugins/levelds/levelds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/plugins/levelds/levelds.go -------------------------------------------------------------------------------- /plugin/plugins/peerlog/peerlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/plugins/peerlog/peerlog.go -------------------------------------------------------------------------------- /plugin/plugins/peerlog/peerlog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/plugins/peerlog/peerlog_test.go -------------------------------------------------------------------------------- /plugin/tracer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/plugin/tracer.go -------------------------------------------------------------------------------- /profile/goroutines.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/profile/goroutines.go -------------------------------------------------------------------------------- /profile/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/profile/profile.go -------------------------------------------------------------------------------- /profile/profile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/profile/profile_test.go -------------------------------------------------------------------------------- /repo/common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/common/common.go -------------------------------------------------------------------------------- /repo/common/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/common/common_test.go -------------------------------------------------------------------------------- /repo/fsrepo/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/fsrepo/config_test.go -------------------------------------------------------------------------------- /repo/fsrepo/datastores.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/fsrepo/datastores.go -------------------------------------------------------------------------------- /repo/fsrepo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/fsrepo/doc.go -------------------------------------------------------------------------------- /repo/fsrepo/fsrepo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/fsrepo/fsrepo.go -------------------------------------------------------------------------------- /repo/fsrepo/fsrepo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/fsrepo/fsrepo_test.go -------------------------------------------------------------------------------- /repo/fsrepo/migrations/fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/fsrepo/migrations/fetch.go -------------------------------------------------------------------------------- /repo/fsrepo/migrations/fetch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/fsrepo/migrations/fetch_test.go -------------------------------------------------------------------------------- /repo/fsrepo/migrations/fetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/fsrepo/migrations/fetcher.go -------------------------------------------------------------------------------- /repo/fsrepo/migrations/httpfetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/fsrepo/migrations/httpfetcher.go -------------------------------------------------------------------------------- /repo/fsrepo/migrations/ipfsdir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/fsrepo/migrations/ipfsdir.go -------------------------------------------------------------------------------- /repo/fsrepo/migrations/ipfsdir_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/fsrepo/migrations/ipfsdir_test.go -------------------------------------------------------------------------------- /repo/fsrepo/migrations/ipfsfetcher/ipfsfetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/fsrepo/migrations/ipfsfetcher/ipfsfetcher.go -------------------------------------------------------------------------------- /repo/fsrepo/migrations/ipfsfetcher/ipfsfetcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/fsrepo/migrations/ipfsfetcher/ipfsfetcher_test.go -------------------------------------------------------------------------------- /repo/fsrepo/migrations/migrations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/fsrepo/migrations/migrations.go -------------------------------------------------------------------------------- /repo/fsrepo/migrations/migrations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/fsrepo/migrations/migrations_test.go -------------------------------------------------------------------------------- /repo/fsrepo/migrations/retryfetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/fsrepo/migrations/retryfetcher.go -------------------------------------------------------------------------------- /repo/fsrepo/migrations/unpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/fsrepo/migrations/unpack.go -------------------------------------------------------------------------------- /repo/fsrepo/migrations/unpack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/fsrepo/migrations/unpack_test.go -------------------------------------------------------------------------------- /repo/fsrepo/migrations/versions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/fsrepo/migrations/versions.go -------------------------------------------------------------------------------- /repo/fsrepo/migrations/versions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/fsrepo/migrations/versions_test.go -------------------------------------------------------------------------------- /repo/fsrepo/misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/fsrepo/misc.go -------------------------------------------------------------------------------- /repo/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/mock.go -------------------------------------------------------------------------------- /repo/onlyone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/onlyone.go -------------------------------------------------------------------------------- /repo/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/repo/repo.go -------------------------------------------------------------------------------- /routing/composer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/routing/composer.go -------------------------------------------------------------------------------- /routing/delegated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/routing/delegated.go -------------------------------------------------------------------------------- /routing/delegated_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/routing/delegated_test.go -------------------------------------------------------------------------------- /routing/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/routing/error.go -------------------------------------------------------------------------------- /routing/wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/routing/wrapper.go -------------------------------------------------------------------------------- /tar/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/tar/format.go -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | IPFS-BUILD-OPTIONS 2 | -------------------------------------------------------------------------------- /test/3nodetest/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/3nodetest/GNUmakefile -------------------------------------------------------------------------------- /test/3nodetest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/3nodetest/README.md -------------------------------------------------------------------------------- /test/3nodetest/bin/.gitignore: -------------------------------------------------------------------------------- 1 | random 2 | -------------------------------------------------------------------------------- /test/3nodetest/bin/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/3nodetest/bin/clean.sh -------------------------------------------------------------------------------- /test/3nodetest/bin/save_logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/3nodetest/bin/save_logs.sh -------------------------------------------------------------------------------- /test/3nodetest/bin/save_profiling_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/3nodetest/bin/save_profiling_data.sh -------------------------------------------------------------------------------- /test/3nodetest/bootstrap/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/3nodetest/bootstrap/Dockerfile -------------------------------------------------------------------------------- /test/3nodetest/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/3nodetest/bootstrap/README.md -------------------------------------------------------------------------------- /test/3nodetest/bootstrap/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/3nodetest/bootstrap/config -------------------------------------------------------------------------------- /test/3nodetest/build/.gitignore: -------------------------------------------------------------------------------- 1 | .built_img 2 | *.log 3 | profiling_data* 4 | -------------------------------------------------------------------------------- /test/3nodetest/build/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/3nodetest/client/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/3nodetest/client/Dockerfile -------------------------------------------------------------------------------- /test/3nodetest/client/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/3nodetest/client/config -------------------------------------------------------------------------------- /test/3nodetest/client/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/3nodetest/client/run.sh -------------------------------------------------------------------------------- /test/3nodetest/data/.gitignore: -------------------------------------------------------------------------------- 1 | file* 2 | -------------------------------------------------------------------------------- /test/3nodetest/data/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/3nodetest/data/Dockerfile -------------------------------------------------------------------------------- /test/3nodetest/fig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/3nodetest/fig.yml -------------------------------------------------------------------------------- /test/3nodetest/run-test-on-img.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/3nodetest/run-test-on-img.sh -------------------------------------------------------------------------------- /test/3nodetest/server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/3nodetest/server/Dockerfile -------------------------------------------------------------------------------- /test/3nodetest/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/3nodetest/server/README.md -------------------------------------------------------------------------------- /test/3nodetest/server/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/3nodetest/server/config -------------------------------------------------------------------------------- /test/3nodetest/server/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/3nodetest/server/run.sh -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/README.md -------------------------------------------------------------------------------- /test/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/Rules.mk -------------------------------------------------------------------------------- /test/api-startup/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/api-startup/main.go -------------------------------------------------------------------------------- /test/bench/bench_cli_ipfs_add/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/bench/bench_cli_ipfs_add/main.go -------------------------------------------------------------------------------- /test/bench/offline_add/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/bench/offline_add/main.go -------------------------------------------------------------------------------- /test/bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/bin/.gitignore -------------------------------------------------------------------------------- /test/bin/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/bin/Rules.mk -------------------------------------------------------------------------------- /test/bin/checkflags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/bin/checkflags -------------------------------------------------------------------------------- /test/bin/continueyn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/bin/continueyn -------------------------------------------------------------------------------- /test/cli/basic_commands_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/cli/basic_commands_test.go -------------------------------------------------------------------------------- /test/cli/completion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/cli/completion_test.go -------------------------------------------------------------------------------- /test/cli/delegated_routing_http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/cli/delegated_routing_http_test.go -------------------------------------------------------------------------------- /test/cli/harness/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/cli/harness/buffer.go -------------------------------------------------------------------------------- /test/cli/harness/harness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/cli/harness/harness.go -------------------------------------------------------------------------------- /test/cli/harness/ipfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/cli/harness/ipfs.go -------------------------------------------------------------------------------- /test/cli/harness/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/cli/harness/node.go -------------------------------------------------------------------------------- /test/cli/harness/nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/cli/harness/nodes.go -------------------------------------------------------------------------------- /test/cli/harness/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/cli/harness/run.go -------------------------------------------------------------------------------- /test/cli/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/cli/init_test.go -------------------------------------------------------------------------------- /test/cli/ping_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/cli/ping_test.go -------------------------------------------------------------------------------- /test/cli/pins_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/cli/pins_test.go -------------------------------------------------------------------------------- /test/cli/testutils/cids.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/cli/testutils/cids.go -------------------------------------------------------------------------------- /test/cli/testutils/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/cli/testutils/files.go -------------------------------------------------------------------------------- /test/cli/testutils/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/cli/testutils/json.go -------------------------------------------------------------------------------- /test/cli/testutils/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/cli/testutils/random.go -------------------------------------------------------------------------------- /test/cli/testutils/requires.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/cli/testutils/requires.go -------------------------------------------------------------------------------- /test/cli/testutils/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/cli/testutils/strings.go -------------------------------------------------------------------------------- /test/dependencies/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/dependencies/GNUmakefile -------------------------------------------------------------------------------- /test/dependencies/dependencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/dependencies/dependencies.go -------------------------------------------------------------------------------- /test/dependencies/go-sleep/.gitignore: -------------------------------------------------------------------------------- 1 | go-sleep 2 | -------------------------------------------------------------------------------- /test/dependencies/go-sleep/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/dependencies/go-sleep/LICENSE -------------------------------------------------------------------------------- /test/dependencies/go-sleep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/dependencies/go-sleep/README.md -------------------------------------------------------------------------------- /test/dependencies/go-sleep/go-sleep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/dependencies/go-sleep/go-sleep.go -------------------------------------------------------------------------------- /test/dependencies/go-timeout/.gitignore: -------------------------------------------------------------------------------- 1 | go-timeout 2 | -------------------------------------------------------------------------------- /test/dependencies/go-timeout/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/dependencies/go-timeout/LICENSE -------------------------------------------------------------------------------- /test/dependencies/go-timeout/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/dependencies/go-timeout/main.go -------------------------------------------------------------------------------- /test/dependencies/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/dependencies/go.mod -------------------------------------------------------------------------------- /test/dependencies/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/dependencies/go.sum -------------------------------------------------------------------------------- /test/dependencies/graphsync-get/graphsync-get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/dependencies/graphsync-get/graphsync-get.go -------------------------------------------------------------------------------- /test/dependencies/iptb/iptb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/dependencies/iptb/iptb.go -------------------------------------------------------------------------------- /test/dependencies/ma-pipe-unidir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/dependencies/ma-pipe-unidir/LICENSE -------------------------------------------------------------------------------- /test/dependencies/ma-pipe-unidir/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/dependencies/ma-pipe-unidir/main.go -------------------------------------------------------------------------------- /test/dependencies/pollEndpoint/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/dependencies/pollEndpoint/main.go -------------------------------------------------------------------------------- /test/integration/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/integration/GNUmakefile -------------------------------------------------------------------------------- /test/integration/addcat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/integration/addcat_test.go -------------------------------------------------------------------------------- /test/integration/bench_cat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/integration/bench_cat_test.go -------------------------------------------------------------------------------- /test/integration/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/integration/bench_test.go -------------------------------------------------------------------------------- /test/integration/bitswap_wo_routing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/integration/bitswap_wo_routing_test.go -------------------------------------------------------------------------------- /test/integration/pubsub_msg_seen_cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/integration/pubsub_msg_seen_cache_test.go -------------------------------------------------------------------------------- /test/integration/three_legged_cat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/integration/three_legged_cat_test.go -------------------------------------------------------------------------------- /test/integration/wan_lan_dht_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/integration/wan_lan_dht_test.go -------------------------------------------------------------------------------- /test/ipfs-test-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/ipfs-test-lib.sh -------------------------------------------------------------------------------- /test/sharness/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/.gitignore -------------------------------------------------------------------------------- /test/sharness/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/GNUmakefile -------------------------------------------------------------------------------- /test/sharness/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/README.md -------------------------------------------------------------------------------- /test/sharness/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/Rules.mk -------------------------------------------------------------------------------- /test/sharness/lib/0001-Generate-partial-JUnit-reports.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/lib/0001-Generate-partial-JUnit-reports.patch -------------------------------------------------------------------------------- /test/sharness/lib/gen-junit-report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/lib/gen-junit-report.sh -------------------------------------------------------------------------------- /test/sharness/lib/install-sharness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/lib/install-sharness.sh -------------------------------------------------------------------------------- /test/sharness/lib/iptb-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/lib/iptb-lib.sh -------------------------------------------------------------------------------- /test/sharness/lib/test-aggregate-results.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/lib/test-aggregate-results.sh -------------------------------------------------------------------------------- /test/sharness/lib/test-lib-hashes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/lib/test-lib-hashes.sh -------------------------------------------------------------------------------- /test/sharness/lib/test-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/lib/test-lib.sh -------------------------------------------------------------------------------- /test/sharness/t0001-tests-work.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0001-tests-work.sh -------------------------------------------------------------------------------- /test/sharness/t0012-completion-fish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0012-completion-fish.sh -------------------------------------------------------------------------------- /test/sharness/t0015-basic-sh-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0015-basic-sh-functions.sh -------------------------------------------------------------------------------- /test/sharness/t0018-indent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0018-indent.sh -------------------------------------------------------------------------------- /test/sharness/t0021-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0021-config.sh -------------------------------------------------------------------------------- /test/sharness/t0022-init-default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0022-init-default.sh -------------------------------------------------------------------------------- /test/sharness/t0023-shutdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0023-shutdown.sh -------------------------------------------------------------------------------- /test/sharness/t0024-datastore-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0024-datastore-config.sh -------------------------------------------------------------------------------- /test/sharness/t0024-files/spec-newshardfun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0024-files/spec-newshardfun -------------------------------------------------------------------------------- /test/sharness/t0024-files/spec-nosync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0024-files/spec-nosync -------------------------------------------------------------------------------- /test/sharness/t0025-datastores.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0025-datastores.sh -------------------------------------------------------------------------------- /test/sharness/t0026-id.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0026-id.sh -------------------------------------------------------------------------------- /test/sharness/t0027-rotate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0027-rotate.sh -------------------------------------------------------------------------------- /test/sharness/t0030-mount.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0030-mount.sh -------------------------------------------------------------------------------- /test/sharness/t0031-mount-publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0031-mount-publish.sh -------------------------------------------------------------------------------- /test/sharness/t0032-mount-sharded.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0032-mount-sharded.sh -------------------------------------------------------------------------------- /test/sharness/t0040-add-and-cat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0040-add-and-cat.sh -------------------------------------------------------------------------------- /test/sharness/t0041-ping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0041-ping.sh -------------------------------------------------------------------------------- /test/sharness/t0042-add-skip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0042-add-skip.sh -------------------------------------------------------------------------------- /test/sharness/t0043-add-w.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0043-add-w.sh -------------------------------------------------------------------------------- /test/sharness/t0044-add-symlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0044-add-symlink.sh -------------------------------------------------------------------------------- /test/sharness/t0045-ls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0045-ls.sh -------------------------------------------------------------------------------- /test/sharness/t0046-id-hash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0046-id-hash.sh -------------------------------------------------------------------------------- /test/sharness/t0050-block.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0050-block.sh -------------------------------------------------------------------------------- /test/sharness/t0051-object-data/UTF-8-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0051-object-data/UTF-8-test.txt -------------------------------------------------------------------------------- /test/sharness/t0051-object-data/brokenPut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0051-object-data/brokenPut.json -------------------------------------------------------------------------------- /test/sharness/t0051-object-data/brokenPut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0051-object-data/brokenPut.xml -------------------------------------------------------------------------------- /test/sharness/t0051-object-data/expected_getOut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0051-object-data/expected_getOut -------------------------------------------------------------------------------- /test/sharness/t0051-object-data/mixed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0051-object-data/mixed.json -------------------------------------------------------------------------------- /test/sharness/t0051-object-data/testPut.json: -------------------------------------------------------------------------------- 1 | { 2 | "Data": "test json for sharness test" 3 | } 4 | -------------------------------------------------------------------------------- /test/sharness/t0051-object-data/testPut.pb: -------------------------------------------------------------------------------- 1 | 2 | test json for sharness test -------------------------------------------------------------------------------- /test/sharness/t0051-object-data/testPut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0051-object-data/testPut.xml -------------------------------------------------------------------------------- /test/sharness/t0051-object.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0051-object.sh -------------------------------------------------------------------------------- /test/sharness/t0052-object-diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0052-object-diff.sh -------------------------------------------------------------------------------- /test/sharness/t0053-dag-data/non-canon.cbor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0053-dag-data/non-canon.cbor -------------------------------------------------------------------------------- /test/sharness/t0053-dag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0053-dag.sh -------------------------------------------------------------------------------- /test/sharness/t0054-dag-car-import-export-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0054-dag-car-import-export-data/README.md -------------------------------------------------------------------------------- /test/sharness/t0054-dag-car-import-export-data/test_dataset_car.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0054-dag-car-import-export-data/test_dataset_car.tar.xz -------------------------------------------------------------------------------- /test/sharness/t0054-dag-car-import-export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0054-dag-car-import-export.sh -------------------------------------------------------------------------------- /test/sharness/t0055-dag-put-json-new-line.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0055-dag-put-json-new-line.sh -------------------------------------------------------------------------------- /test/sharness/t0060-daemon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0060-daemon.sh -------------------------------------------------------------------------------- /test/sharness/t0060-data/mss-noise: -------------------------------------------------------------------------------- 1 | /multistream/1.0.0 2 | /noise 3 | -------------------------------------------------------------------------------- /test/sharness/t0060-data/mss-plaintext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0060-data/mss-plaintext -------------------------------------------------------------------------------- /test/sharness/t0060-data/mss-tls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0060-data/mss-tls -------------------------------------------------------------------------------- /test/sharness/t0061-daemon-opts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0061-daemon-opts.sh -------------------------------------------------------------------------------- /test/sharness/t0062-daemon-api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0062-daemon-api.sh -------------------------------------------------------------------------------- /test/sharness/t0063-daemon-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0063-daemon-init.sh -------------------------------------------------------------------------------- /test/sharness/t0063-external.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0063-external.sh -------------------------------------------------------------------------------- /test/sharness/t0064-api-file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0064-api-file.sh -------------------------------------------------------------------------------- /test/sharness/t0065-active-requests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0065-active-requests.sh -------------------------------------------------------------------------------- /test/sharness/t0066-migration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0066-migration.sh -------------------------------------------------------------------------------- /test/sharness/t0067-unix-api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0067-unix-api.sh -------------------------------------------------------------------------------- /test/sharness/t0070-user-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0070-user-config.sh -------------------------------------------------------------------------------- /test/sharness/t0080-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0080-repo.sh -------------------------------------------------------------------------------- /test/sharness/t0081-repo-pinning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0081-repo-pinning.sh -------------------------------------------------------------------------------- /test/sharness/t0082-repo-gc-auto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0082-repo-gc-auto.sh -------------------------------------------------------------------------------- /test/sharness/t0084-repo-read-rehash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0084-repo-read-rehash.sh -------------------------------------------------------------------------------- /test/sharness/t0086-repo-verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0086-repo-verify.sh -------------------------------------------------------------------------------- /test/sharness/t0087-repo-robust-gc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0087-repo-robust-gc.sh -------------------------------------------------------------------------------- /test/sharness/t0088-repo-stat-symlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0088-repo-stat-symlink.sh -------------------------------------------------------------------------------- /test/sharness/t0090-get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0090-get.sh -------------------------------------------------------------------------------- /test/sharness/t0095-refs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0095-refs.sh -------------------------------------------------------------------------------- /test/sharness/t0100-name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0100-name.sh -------------------------------------------------------------------------------- /test/sharness/t0101-iptb-name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0101-iptb-name.sh -------------------------------------------------------------------------------- /test/sharness/t0109-gateway-web-_redirects-data/redirects.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0109-gateway-web-_redirects-data/redirects.car -------------------------------------------------------------------------------- /test/sharness/t0109-gateway-web-_redirects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0109-gateway-web-_redirects.sh -------------------------------------------------------------------------------- /test/sharness/t0110-gateway-data/foo.block: -------------------------------------------------------------------------------- 1 | 2 | foo -------------------------------------------------------------------------------- /test/sharness/t0110-gateway-data/foofoo.block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0110-gateway-data/foofoo.block -------------------------------------------------------------------------------- /test/sharness/t0110-gateway.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0110-gateway.sh -------------------------------------------------------------------------------- /test/sharness/t0111-gateway-writeable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0111-gateway-writeable.sh -------------------------------------------------------------------------------- /test/sharness/t0112-gateway-cors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0112-gateway-cors.sh -------------------------------------------------------------------------------- /test/sharness/t0113-gateway-symlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0113-gateway-symlink.sh -------------------------------------------------------------------------------- /test/sharness/t0114-gateway-subdomains.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0114-gateway-subdomains.sh -------------------------------------------------------------------------------- /test/sharness/t0115-gateway-dir-listing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0115-gateway-dir-listing.sh -------------------------------------------------------------------------------- /test/sharness/t0116-gateway-cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0116-gateway-cache.sh -------------------------------------------------------------------------------- /test/sharness/t0116-prometheus-data/prometheus_metrics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0116-prometheus-data/prometheus_metrics -------------------------------------------------------------------------------- /test/sharness/t0116-prometheus-data/prometheus_metrics_added_by_enabling_rcmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0116-prometheus-data/prometheus_metrics_added_by_enabling_rcmgr -------------------------------------------------------------------------------- /test/sharness/t0117-gateway-block.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0117-gateway-block.sh -------------------------------------------------------------------------------- /test/sharness/t0118-gateway-car.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0118-gateway-car.sh -------------------------------------------------------------------------------- /test/sharness/t0118-gateway-car/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0118-gateway-car/README.md -------------------------------------------------------------------------------- /test/sharness/t0118-gateway-car/carv1-basic.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0118-gateway-car/carv1-basic.car -------------------------------------------------------------------------------- /test/sharness/t0118-gateway-car/carv1-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0118-gateway-car/carv1-basic.json -------------------------------------------------------------------------------- /test/sharness/t0119-prometheus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0119-prometheus.sh -------------------------------------------------------------------------------- /test/sharness/t0120-bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0120-bootstrap.sh -------------------------------------------------------------------------------- /test/sharness/t0121-bootstrap-iptb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0121-bootstrap-iptb.sh -------------------------------------------------------------------------------- /test/sharness/t0122-gateway-tar-data/inside-root.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0122-gateway-tar-data/inside-root.car -------------------------------------------------------------------------------- /test/sharness/t0122-gateway-tar-data/outside-root.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0122-gateway-tar-data/outside-root.car -------------------------------------------------------------------------------- /test/sharness/t0122-gateway-tar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0122-gateway-tar.sh -------------------------------------------------------------------------------- /test/sharness/t0123-gateway-json-cbor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0123-gateway-json-cbor.sh -------------------------------------------------------------------------------- /test/sharness/t0123-gateway-json-cbor/dag-cbor-traversal.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0123-gateway-json-cbor/dag-cbor-traversal.car -------------------------------------------------------------------------------- /test/sharness/t0123-gateway-json-cbor/dag-json-traversal.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0123-gateway-json-cbor/dag-json-traversal.car -------------------------------------------------------------------------------- /test/sharness/t0123-gateway-json-cbor/dag-pb.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0123-gateway-json-cbor/dag-pb.car -------------------------------------------------------------------------------- /test/sharness/t0123-gateway-json-cbor/dag-pb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0123-gateway-json-cbor/dag-pb.json -------------------------------------------------------------------------------- /test/sharness/t0125-twonode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0125-twonode.sh -------------------------------------------------------------------------------- /test/sharness/t0130-multinode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0130-multinode.sh -------------------------------------------------------------------------------- /test/sharness/t0131-multinode-client-routing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0131-multinode-client-routing.sh -------------------------------------------------------------------------------- /test/sharness/t0139-swarm-rcmgr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0139-swarm-rcmgr.sh -------------------------------------------------------------------------------- /test/sharness/t0140-swarm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0140-swarm.sh -------------------------------------------------------------------------------- /test/sharness/t0141-addfilter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0141-addfilter.sh -------------------------------------------------------------------------------- /test/sharness/t0142-testfilter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0142-testfilter.sh -------------------------------------------------------------------------------- /test/sharness/t0150-clisuggest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0150-clisuggest.sh -------------------------------------------------------------------------------- /test/sharness/t0151-sysdiag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0151-sysdiag.sh -------------------------------------------------------------------------------- /test/sharness/t0152-profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0152-profile.sh -------------------------------------------------------------------------------- /test/sharness/t0160-resolve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0160-resolve.sh -------------------------------------------------------------------------------- /test/sharness/t0165-keystore-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0165-keystore-data/README.md -------------------------------------------------------------------------------- /test/sharness/t0165-keystore-data/openssl_ed25519.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0165-keystore-data/openssl_ed25519.pem -------------------------------------------------------------------------------- /test/sharness/t0165-keystore-data/openssl_rsa.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0165-keystore-data/openssl_rsa.pem -------------------------------------------------------------------------------- /test/sharness/t0165-keystore-data/openssl_secp384r1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0165-keystore-data/openssl_secp384r1.pem -------------------------------------------------------------------------------- /test/sharness/t0165-keystore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0165-keystore.sh -------------------------------------------------------------------------------- /test/sharness/t0170-legacy-dht.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0170-legacy-dht.sh -------------------------------------------------------------------------------- /test/sharness/t0170-routing-dht.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0170-routing-dht.sh -------------------------------------------------------------------------------- /test/sharness/t0171-peering.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0171-peering.sh -------------------------------------------------------------------------------- /test/sharness/t0175-provider.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0175-provider.sh -------------------------------------------------------------------------------- /test/sharness/t0175-reprovider.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0175-reprovider.sh -------------------------------------------------------------------------------- /test/sharness/t0175-strategic-provider.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0175-strategic-provider.sh -------------------------------------------------------------------------------- /test/sharness/t0180-p2p.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0180-p2p.sh -------------------------------------------------------------------------------- /test/sharness/t0181-private-network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0181-private-network.sh -------------------------------------------------------------------------------- /test/sharness/t0182-circuit-relay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0182-circuit-relay.sh -------------------------------------------------------------------------------- /test/sharness/t0183-namesys-pubsub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0183-namesys-pubsub.sh -------------------------------------------------------------------------------- /test/sharness/t0184-http-proxy-over-p2p.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0184-http-proxy-over-p2p.sh -------------------------------------------------------------------------------- /test/sharness/t0185-autonat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0185-autonat.sh -------------------------------------------------------------------------------- /test/sharness/t0190-quic-ping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0190-quic-ping.sh -------------------------------------------------------------------------------- /test/sharness/t0191-webtransport-ping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0191-webtransport-ping.sh -------------------------------------------------------------------------------- /test/sharness/t0195-noise.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0195-noise.sh -------------------------------------------------------------------------------- /test/sharness/t0200-unixfs-ls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0200-unixfs-ls.sh -------------------------------------------------------------------------------- /test/sharness/t0210-tar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0210-tar.sh -------------------------------------------------------------------------------- /test/sharness/t0220-bitswap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0220-bitswap.sh -------------------------------------------------------------------------------- /test/sharness/t0221-graphsync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0221-graphsync.sh -------------------------------------------------------------------------------- /test/sharness/t0230-channel-streaming-http-content-type.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0230-channel-streaming-http-content-type.sh -------------------------------------------------------------------------------- /test/sharness/t0231-channel-streaming.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0231-channel-streaming.sh -------------------------------------------------------------------------------- /test/sharness/t0235-cli-request.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0235-cli-request.sh -------------------------------------------------------------------------------- /test/sharness/t0236-cli-api-dns-resolve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0236-cli-api-dns-resolve.sh -------------------------------------------------------------------------------- /test/sharness/t0240-republisher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0240-republisher.sh -------------------------------------------------------------------------------- /test/sharness/t0250-files-api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0250-files-api.sh -------------------------------------------------------------------------------- /test/sharness/t0251-files-flushing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0251-files-flushing.sh -------------------------------------------------------------------------------- /test/sharness/t0252-files-gc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0252-files-gc.sh -------------------------------------------------------------------------------- /test/sharness/t0260-sharding.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0260-sharding.sh -------------------------------------------------------------------------------- /test/sharness/t0270-filestore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0270-filestore.sh -------------------------------------------------------------------------------- /test/sharness/t0271-filestore-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0271-filestore-utils.sh -------------------------------------------------------------------------------- /test/sharness/t0272-urlstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0272-urlstore.sh -------------------------------------------------------------------------------- /test/sharness/t0275-cid-security-data/CIQG6PGTD2VV34S33BE4MNCQITBRFYUPYQLDXYARR3DQW37MOT7K5XI.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0275-cid-security-data/CIQG6PGTD2VV34S33BE4MNCQITBRFYUPYQLDXYARR3DQW37MOT7K5XI.data -------------------------------------------------------------------------------- /test/sharness/t0275-cid-security-data/EICEM7ITSI.data: -------------------------------------------------------------------------------- 1 | testing 2 | -------------------------------------------------------------------------------- /test/sharness/t0275-cid-security.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0275-cid-security.sh -------------------------------------------------------------------------------- /test/sharness/t0276-cidv0v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0276-cidv0v1.sh -------------------------------------------------------------------------------- /test/sharness/t0280-plugin-dag-jose-data/dag-cbor/bafyreicxyzuqbx5yb7ytkgkuofwksbal3ygtswxuri25crxdxms55m5fki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0280-plugin-dag-jose-data/dag-cbor/bafyreicxyzuqbx5yb7ytkgkuofwksbal3ygtswxuri25crxdxms55m5fki -------------------------------------------------------------------------------- /test/sharness/t0280-plugin-dag-jose-data/dag-cbor/bafyreihdfxoshbhowufyvjk7kq46dt6h7u6byejmlnifz34z7ocoq7ugk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0280-plugin-dag-jose-data/dag-cbor/bafyreihdfxoshbhowufyvjk7kq46dt6h7u6byejmlnifz34z7ocoq7ugk4 -------------------------------------------------------------------------------- /test/sharness/t0280-plugin-dag-jose-data/dag-cbor/bafyreihkt4u6euddfhofkutfzxwet7w7zm5qrjpop655yhnb5dnzqw26lm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0280-plugin-dag-jose-data/dag-cbor/bafyreihkt4u6euddfhofkutfzxwet7w7zm5qrjpop655yhnb5dnzqw26lm -------------------------------------------------------------------------------- /test/sharness/t0280-plugin-dag-jose-data/dag-jose/bagcqcera542h3xc57nudkgjcceexyzyxrkwi4ikbn773ag6dqdcyjt6z6rga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0280-plugin-dag-jose-data/dag-jose/bagcqcera542h3xc57nudkgjcceexyzyxrkwi4ikbn773ag6dqdcyjt6z6rga -------------------------------------------------------------------------------- /test/sharness/t0280-plugin-dag-jose-data/dag-jose/bagcqcera5uvz2qai6l4vmqjigwpowluilxngz3dyjnva2s3uwbfb5u4ao4fa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0280-plugin-dag-jose-data/dag-jose/bagcqcera5uvz2qai6l4vmqjigwpowluilxngz3dyjnva2s3uwbfb5u4ao4fa -------------------------------------------------------------------------------- /test/sharness/t0280-plugin-dag-jose-data/dag-jose/bagcqcera7azagcqlpu4ivvh4xp4iv6psmb5d7eki6ln3fnfnsnbb2hzv4nxq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0280-plugin-dag-jose-data/dag-jose/bagcqcera7azagcqlpu4ivvh4xp4iv6psmb5d7eki6ln3fnfnsnbb2hzv4nxq -------------------------------------------------------------------------------- /test/sharness/t0280-plugin-dag-jose-data/dag-jose/bagcqcerakjv2mmdlbai3urym22bw5kaw7nqov73yaxf6xjnp7e56sclsrooa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0280-plugin-dag-jose-data/dag-jose/bagcqcerakjv2mmdlbai3urym22bw5kaw7nqov73yaxf6xjnp7e56sclsrooa -------------------------------------------------------------------------------- /test/sharness/t0280-plugin-dag-jose-data/dag-jose/bagcqceraqfknq7xaemcihmq2albau32ttrutxnco7xeoik6mlejismmvw5zq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0280-plugin-dag-jose-data/dag-jose/bagcqceraqfknq7xaemcihmq2albau32ttrutxnco7xeoik6mlejismmvw5zq -------------------------------------------------------------------------------- /test/sharness/t0280-plugin-dag-jose-data/dag-jose/bagcqcerauben4l6ee2wjf2fnkj7vaels4p7lnytenk35j3gl2lzcbtbgyoea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0280-plugin-dag-jose-data/dag-jose/bagcqcerauben4l6ee2wjf2fnkj7vaels4p7lnytenk35j3gl2lzcbtbgyoea -------------------------------------------------------------------------------- /test/sharness/t0280-plugin-dag-jose-data/dag-jose/bagcqceravvw4bx7jgkxxjwfuqo2yoja6w4cmvmu3gkew3s7yu3vt2ce7riwa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0280-plugin-dag-jose-data/dag-jose/bagcqceravvw4bx7jgkxxjwfuqo2yoja6w4cmvmu3gkew3s7yu3vt2ce7riwa -------------------------------------------------------------------------------- /test/sharness/t0280-plugin-dag-jose-data/dag-jose/bagcqceraxazmu67crshzqdeg3kwnfschs25epy5sbtqtjre2qw3d62kzplva: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0280-plugin-dag-jose-data/dag-jose/bagcqceraxazmu67crshzqdeg3kwnfschs25epy5sbtqtjre2qw3d62kzplva -------------------------------------------------------------------------------- /test/sharness/t0280-plugin-dag-jose-data/dag-jose/bagcqceraxvt5izt4sz7kjfrm42dxrutp6ijywgsacllkznzekmfojypkvfea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0280-plugin-dag-jose-data/dag-jose/bagcqceraxvt5izt4sz7kjfrm42dxrutp6ijywgsacllkznzekmfojypkvfea -------------------------------------------------------------------------------- /test/sharness/t0280-plugin-dag-jose-data/dag-json/baguqeeraloya3qpa25kl5l4y3bzgl7rhyta2p7lwaocyxx4vpvdligb7mt2q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0280-plugin-dag-jose-data/dag-json/baguqeeraloya3qpa25kl5l4y3bzgl7rhyta2p7lwaocyxx4vpvdligb7mt2q -------------------------------------------------------------------------------- /test/sharness/t0280-plugin-dag-jose-data/dag-json/baguqeeraovfm3rr3pvmxm27zgvxp5wycbfih35xih2uznminpnds5esm4jlq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0280-plugin-dag-jose-data/dag-json/baguqeeraovfm3rr3pvmxm27zgvxp5wycbfih35xih2uznminpnds5esm4jlq -------------------------------------------------------------------------------- /test/sharness/t0280-plugin-dag-jose-data/dag-json/baguqeeravexfd6qijjtnzxfqq6kgknnkncztgmvhjhxm6ih352qskolt2gxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0280-plugin-dag-jose-data/dag-json/baguqeeravexfd6qijjtnzxfqq6kgknnkncztgmvhjhxm6ih352qskolt2gxa -------------------------------------------------------------------------------- /test/sharness/t0280-plugin-dag-jose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0280-plugin-dag-jose.sh -------------------------------------------------------------------------------- /test/sharness/t0280-plugin-data/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0280-plugin-data/example.go -------------------------------------------------------------------------------- /test/sharness/t0280-plugin-fx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0280-plugin-fx.sh -------------------------------------------------------------------------------- /test/sharness/t0280-plugin-git-data/git.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0280-plugin-git-data/git.tar.gz -------------------------------------------------------------------------------- /test/sharness/t0280-plugin-git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0280-plugin-git.sh -------------------------------------------------------------------------------- /test/sharness/t0280-plugin-peerlog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0280-plugin-peerlog.sh -------------------------------------------------------------------------------- /test/sharness/t0280-plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0280-plugin.sh -------------------------------------------------------------------------------- /test/sharness/t0290-cid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0290-cid.sh -------------------------------------------------------------------------------- /test/sharness/t0295-multibase.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0295-multibase.sh -------------------------------------------------------------------------------- /test/sharness/t0300-docker-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0300-docker-image.sh -------------------------------------------------------------------------------- /test/sharness/t0301-docker-migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0301-docker-migrate.sh -------------------------------------------------------------------------------- /test/sharness/t0310-tracing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0310-tracing.sh -------------------------------------------------------------------------------- /test/sharness/t0320-pubsub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0320-pubsub.sh -------------------------------------------------------------------------------- /test/sharness/t0321-pubsub-gossipsub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0321-pubsub-gossipsub.sh -------------------------------------------------------------------------------- /test/sharness/t0322-pubsub-http-rpc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0322-pubsub-http-rpc.sh -------------------------------------------------------------------------------- /test/sharness/t0400-api-no-gateway.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0400-api-no-gateway.sh -------------------------------------------------------------------------------- /test/sharness/t0401-api-browser-security.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0401-api-browser-security.sh -------------------------------------------------------------------------------- /test/sharness/t0410-api-add.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0410-api-add.sh -------------------------------------------------------------------------------- /test/sharness/t0500-issues-and-regressions-offline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0500-issues-and-regressions-offline.sh -------------------------------------------------------------------------------- /test/sharness/t0600-issues-and-regressions-online.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0600-issues-and-regressions-online.sh -------------------------------------------------------------------------------- /test/sharness/t0700-remotepin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0700-remotepin.sh -------------------------------------------------------------------------------- /test/sharness/t0701-delegated-routing-reframe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0701-delegated-routing-reframe.sh -------------------------------------------------------------------------------- /test/sharness/t0701-delegated-routing-reframe/FindProvidersRequest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0701-delegated-routing-reframe/FindProvidersRequest -------------------------------------------------------------------------------- /test/sharness/t0701-delegated-routing-reframe/FindProvidersResponse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0701-delegated-routing-reframe/FindProvidersResponse -------------------------------------------------------------------------------- /test/sharness/t0702-delegated-routing-http/FindProvidersResponse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0702-delegated-routing-http/FindProvidersResponse -------------------------------------------------------------------------------- /test/sharness/t0800-blake3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/t0800-blake3.sh -------------------------------------------------------------------------------- /test/sharness/x0601-pin-fail-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness/x0601-pin-fail-test.sh -------------------------------------------------------------------------------- /test/sharness_test_coverage_helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/sharness_test_coverage_helper.sh -------------------------------------------------------------------------------- /test/unit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/unit/.gitignore -------------------------------------------------------------------------------- /test/unit/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/test/unit/Rules.mk -------------------------------------------------------------------------------- /testplans/bitswap/_compositions/large-k8s.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/testplans/bitswap/_compositions/large-k8s.toml -------------------------------------------------------------------------------- /testplans/bitswap/_compositions/medium-k8s.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/testplans/bitswap/_compositions/medium-k8s.toml -------------------------------------------------------------------------------- /testplans/bitswap/_compositions/small-docker.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/testplans/bitswap/_compositions/small-docker.toml -------------------------------------------------------------------------------- /testplans/bitswap/_compositions/small-k8s.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/testplans/bitswap/_compositions/small-k8s.toml -------------------------------------------------------------------------------- /testplans/bitswap/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/testplans/bitswap/go.mod -------------------------------------------------------------------------------- /testplans/bitswap/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/testplans/bitswap/go.sum -------------------------------------------------------------------------------- /testplans/bitswap/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/testplans/bitswap/main.go -------------------------------------------------------------------------------- /testplans/bitswap/manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/testplans/bitswap/manifest.toml -------------------------------------------------------------------------------- /thirdparty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/thirdparty/README.md -------------------------------------------------------------------------------- /thirdparty/assert/assert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/thirdparty/assert/assert.go -------------------------------------------------------------------------------- /thirdparty/dir/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/thirdparty/dir/dir.go -------------------------------------------------------------------------------- /thirdparty/notifier/notifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/thirdparty/notifier/notifier.go -------------------------------------------------------------------------------- /thirdparty/notifier/notifier_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/thirdparty/notifier/notifier_test.go -------------------------------------------------------------------------------- /thirdparty/unit/unit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/thirdparty/unit/unit.go -------------------------------------------------------------------------------- /thirdparty/unit/unit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/thirdparty/unit/unit_test.go -------------------------------------------------------------------------------- /thirdparty/verifbs/verifbs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/thirdparty/verifbs/verifbs.go -------------------------------------------------------------------------------- /tracing/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/tracing/doc.go -------------------------------------------------------------------------------- /tracing/file_exporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/tracing/file_exporter.go -------------------------------------------------------------------------------- /tracing/tracing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/tracing/tracing.go -------------------------------------------------------------------------------- /version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDPC/diSTOR/HEAD/version.go --------------------------------------------------------------------------------