├── .cproject ├── .gitignore ├── .project ├── LICENSE ├── Makefile ├── README.md ├── blocks ├── Makefile ├── block.c └── blockstore.c ├── cid ├── Makefile └── cid.c ├── cmd ├── Makefile └── ipfs │ ├── Makefile │ ├── init.c │ └── main.c ├── commands ├── Makefile ├── argument.c ├── cli │ ├── Makefile │ └── parse.c ├── command.c └── command_option.c ├── core ├── Makefile └── builder.c ├── datastore ├── Makefile ├── ds_helper.c └── key.c ├── flatfs ├── Makefile └── flatfs.c ├── include └── ipfs │ ├── blocks │ ├── block.h │ └── blockstore.h │ ├── cid │ └── cid.h │ ├── cmd │ └── ipfs │ │ └── init.h │ ├── commands │ ├── argument.h │ ├── cli │ │ └── parse.h │ ├── command.h │ ├── command_option.h │ ├── context.h │ ├── req_log.h │ └── request.h │ ├── core │ ├── builder.h │ └── ipfs_node.h │ ├── datastore │ ├── ds_helper.h │ └── key.h │ ├── flatfs │ └── flatfs.h │ ├── multibase │ └── multibase.h │ ├── namesys │ ├── isdomain.h │ └── namesys.h │ ├── node │ ├── Example for this.c │ └── node.h │ ├── os │ └── utils.h │ ├── path │ └── path.h │ ├── repo │ ├── config │ │ ├── addresses.h │ │ ├── bootstrap_peers.h │ │ ├── config.h │ │ ├── datastore.h │ │ ├── gateway.h │ │ ├── identity.h │ │ ├── peer.h │ │ └── swarm.h │ └── fsrepo │ │ ├── fs_repo.h │ │ └── lmdb_datastore.h │ └── thirdparty │ └── ipfsaddr │ └── ipfs_addr.h ├── merkledag └── merkledag.c ├── multibase ├── Makefile └── multibase.c ├── namesys ├── base.c ├── dns.c ├── is_domain_test.c ├── isdomain.c ├── namesys.c ├── proquint.c └── proquint_test.c ├── node └── node.c ├── os ├── Makefile └── utils.c ├── path ├── path.c └── resolver.c ├── repo ├── Makefile ├── config │ ├── Makefile │ ├── addresses.c │ ├── bootstrap_peers.c │ ├── config.c │ ├── datastore.c │ ├── gateway.c │ ├── identity.c │ ├── peer.c │ └── swarm.c └── fsrepo │ ├── Makefile │ ├── fs_repo.c │ ├── jsmn.c │ ├── jsmn.h │ └── lmdb_datastore.c ├── test ├── Makefile ├── cid │ └── test_cid.h ├── cmd │ └── ipfs │ │ └── test_init.h ├── flatfs │ └── test_flatfs.h ├── repo │ ├── test_repo_bootstrap_peers.h │ ├── test_repo_config.h │ ├── test_repo_fsrepo.h │ └── test_repo_identity.h ├── storage │ ├── test_blocks.h │ ├── test_blockstore.h │ ├── test_datastore.h │ └── test_ds_helper.h └── testit.c └── thirdparty ├── Makefile └── ipfsaddr ├── Makefile └── ipfs_addr.c /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/.cproject -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/.project -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/README.md -------------------------------------------------------------------------------- /blocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/blocks/Makefile -------------------------------------------------------------------------------- /blocks/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/blocks/block.c -------------------------------------------------------------------------------- /blocks/blockstore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/blocks/blockstore.c -------------------------------------------------------------------------------- /cid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/cid/Makefile -------------------------------------------------------------------------------- /cid/cid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/cid/cid.c -------------------------------------------------------------------------------- /cmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/cmd/Makefile -------------------------------------------------------------------------------- /cmd/ipfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/cmd/ipfs/Makefile -------------------------------------------------------------------------------- /cmd/ipfs/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/cmd/ipfs/init.c -------------------------------------------------------------------------------- /cmd/ipfs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/cmd/ipfs/main.c -------------------------------------------------------------------------------- /commands/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/commands/Makefile -------------------------------------------------------------------------------- /commands/argument.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/commands/argument.c -------------------------------------------------------------------------------- /commands/cli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/commands/cli/Makefile -------------------------------------------------------------------------------- /commands/cli/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/commands/cli/parse.c -------------------------------------------------------------------------------- /commands/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/commands/command.c -------------------------------------------------------------------------------- /commands/command_option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/commands/command_option.c -------------------------------------------------------------------------------- /core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/core/Makefile -------------------------------------------------------------------------------- /core/builder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/core/builder.c -------------------------------------------------------------------------------- /datastore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/datastore/Makefile -------------------------------------------------------------------------------- /datastore/ds_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/datastore/ds_helper.c -------------------------------------------------------------------------------- /datastore/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/datastore/key.c -------------------------------------------------------------------------------- /flatfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/flatfs/Makefile -------------------------------------------------------------------------------- /flatfs/flatfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/flatfs/flatfs.c -------------------------------------------------------------------------------- /include/ipfs/blocks/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/blocks/block.h -------------------------------------------------------------------------------- /include/ipfs/blocks/blockstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/blocks/blockstore.h -------------------------------------------------------------------------------- /include/ipfs/cid/cid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/cid/cid.h -------------------------------------------------------------------------------- /include/ipfs/cmd/ipfs/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/cmd/ipfs/init.h -------------------------------------------------------------------------------- /include/ipfs/commands/argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/commands/argument.h -------------------------------------------------------------------------------- /include/ipfs/commands/cli/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/commands/cli/parse.h -------------------------------------------------------------------------------- /include/ipfs/commands/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/commands/command.h -------------------------------------------------------------------------------- /include/ipfs/commands/command_option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/commands/command_option.h -------------------------------------------------------------------------------- /include/ipfs/commands/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/commands/context.h -------------------------------------------------------------------------------- /include/ipfs/commands/req_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/commands/req_log.h -------------------------------------------------------------------------------- /include/ipfs/commands/request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/commands/request.h -------------------------------------------------------------------------------- /include/ipfs/core/builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/core/builder.h -------------------------------------------------------------------------------- /include/ipfs/core/ipfs_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/core/ipfs_node.h -------------------------------------------------------------------------------- /include/ipfs/datastore/ds_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/datastore/ds_helper.h -------------------------------------------------------------------------------- /include/ipfs/datastore/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/datastore/key.h -------------------------------------------------------------------------------- /include/ipfs/flatfs/flatfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/flatfs/flatfs.h -------------------------------------------------------------------------------- /include/ipfs/multibase/multibase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/multibase/multibase.h -------------------------------------------------------------------------------- /include/ipfs/namesys/isdomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/namesys/isdomain.h -------------------------------------------------------------------------------- /include/ipfs/namesys/namesys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/namesys/namesys.h -------------------------------------------------------------------------------- /include/ipfs/node/Example for this.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/node/Example for this.c -------------------------------------------------------------------------------- /include/ipfs/node/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/node/node.h -------------------------------------------------------------------------------- /include/ipfs/os/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/os/utils.h -------------------------------------------------------------------------------- /include/ipfs/path/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/path/path.h -------------------------------------------------------------------------------- /include/ipfs/repo/config/addresses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/repo/config/addresses.h -------------------------------------------------------------------------------- /include/ipfs/repo/config/bootstrap_peers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/repo/config/bootstrap_peers.h -------------------------------------------------------------------------------- /include/ipfs/repo/config/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/repo/config/config.h -------------------------------------------------------------------------------- /include/ipfs/repo/config/datastore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/repo/config/datastore.h -------------------------------------------------------------------------------- /include/ipfs/repo/config/gateway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/repo/config/gateway.h -------------------------------------------------------------------------------- /include/ipfs/repo/config/identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/repo/config/identity.h -------------------------------------------------------------------------------- /include/ipfs/repo/config/peer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/repo/config/peer.h -------------------------------------------------------------------------------- /include/ipfs/repo/config/swarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/repo/config/swarm.h -------------------------------------------------------------------------------- /include/ipfs/repo/fsrepo/fs_repo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/repo/fsrepo/fs_repo.h -------------------------------------------------------------------------------- /include/ipfs/repo/fsrepo/lmdb_datastore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/repo/fsrepo/lmdb_datastore.h -------------------------------------------------------------------------------- /include/ipfs/thirdparty/ipfsaddr/ipfs_addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/include/ipfs/thirdparty/ipfsaddr/ipfs_addr.h -------------------------------------------------------------------------------- /merkledag/merkledag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/merkledag/merkledag.c -------------------------------------------------------------------------------- /multibase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/multibase/Makefile -------------------------------------------------------------------------------- /multibase/multibase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/multibase/multibase.c -------------------------------------------------------------------------------- /namesys/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/namesys/base.c -------------------------------------------------------------------------------- /namesys/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/namesys/dns.c -------------------------------------------------------------------------------- /namesys/is_domain_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/namesys/is_domain_test.c -------------------------------------------------------------------------------- /namesys/isdomain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/namesys/isdomain.c -------------------------------------------------------------------------------- /namesys/namesys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/namesys/namesys.c -------------------------------------------------------------------------------- /namesys/proquint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/namesys/proquint.c -------------------------------------------------------------------------------- /namesys/proquint_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/namesys/proquint_test.c -------------------------------------------------------------------------------- /node/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/node/node.c -------------------------------------------------------------------------------- /os/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/os/Makefile -------------------------------------------------------------------------------- /os/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/os/utils.c -------------------------------------------------------------------------------- /path/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/path/path.c -------------------------------------------------------------------------------- /path/resolver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/path/resolver.c -------------------------------------------------------------------------------- /repo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/repo/Makefile -------------------------------------------------------------------------------- /repo/config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/repo/config/Makefile -------------------------------------------------------------------------------- /repo/config/addresses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/repo/config/addresses.c -------------------------------------------------------------------------------- /repo/config/bootstrap_peers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/repo/config/bootstrap_peers.c -------------------------------------------------------------------------------- /repo/config/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/repo/config/config.c -------------------------------------------------------------------------------- /repo/config/datastore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/repo/config/datastore.c -------------------------------------------------------------------------------- /repo/config/gateway.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/repo/config/gateway.c -------------------------------------------------------------------------------- /repo/config/identity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/repo/config/identity.c -------------------------------------------------------------------------------- /repo/config/peer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/repo/config/peer.c -------------------------------------------------------------------------------- /repo/config/swarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/repo/config/swarm.c -------------------------------------------------------------------------------- /repo/fsrepo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/repo/fsrepo/Makefile -------------------------------------------------------------------------------- /repo/fsrepo/fs_repo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/repo/fsrepo/fs_repo.c -------------------------------------------------------------------------------- /repo/fsrepo/jsmn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/repo/fsrepo/jsmn.c -------------------------------------------------------------------------------- /repo/fsrepo/jsmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/repo/fsrepo/jsmn.h -------------------------------------------------------------------------------- /repo/fsrepo/lmdb_datastore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/repo/fsrepo/lmdb_datastore.c -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/cid/test_cid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/test/cid/test_cid.h -------------------------------------------------------------------------------- /test/cmd/ipfs/test_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/test/cmd/ipfs/test_init.h -------------------------------------------------------------------------------- /test/flatfs/test_flatfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/test/flatfs/test_flatfs.h -------------------------------------------------------------------------------- /test/repo/test_repo_bootstrap_peers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/test/repo/test_repo_bootstrap_peers.h -------------------------------------------------------------------------------- /test/repo/test_repo_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/test/repo/test_repo_config.h -------------------------------------------------------------------------------- /test/repo/test_repo_fsrepo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/test/repo/test_repo_fsrepo.h -------------------------------------------------------------------------------- /test/repo/test_repo_identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/test/repo/test_repo_identity.h -------------------------------------------------------------------------------- /test/storage/test_blocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/test/storage/test_blocks.h -------------------------------------------------------------------------------- /test/storage/test_blockstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/test/storage/test_blockstore.h -------------------------------------------------------------------------------- /test/storage/test_datastore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/test/storage/test_datastore.h -------------------------------------------------------------------------------- /test/storage/test_ds_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/test/storage/test_ds_helper.h -------------------------------------------------------------------------------- /test/testit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/test/testit.c -------------------------------------------------------------------------------- /thirdparty/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/thirdparty/Makefile -------------------------------------------------------------------------------- /thirdparty/ipfsaddr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/thirdparty/ipfsaddr/Makefile -------------------------------------------------------------------------------- /thirdparty/ipfsaddr/ipfs_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xethyrion/c-ipfs/HEAD/thirdparty/ipfsaddr/ipfs_addr.c --------------------------------------------------------------------------------