Files
darkfi/bin/fud
foo 4eba00236d clippy: add suggested clippy lints to top-level Cargo.toml and enable
clippy linting at the workspace level for all crates

Configure all workspaces to use lints from the top-level Cargo.toml
  file
Add example lints that the project could configure to improve security
  and reliability.
Configure lints to warn level. Using deny level makes other binaries
fail to compile if even one of them has a failure.
No lints are added in this commit. Future changes can enable and fix
lints
2024-06-09 10:35:09 -04:00
..
2022-09-30 00:40:19 +03:00

fud

File-sharing Utility Daemon, using DHT for records discovery.

Usage

fud 0.3.0
File-sharing Utility Daemon, using DHT for records discovery.

USAGE:
    fud [FLAGS] [OPTIONS]

FLAGS:
        --channel-log    Enable channel log
    -h, --help           Prints help information
        --localnet       Enable localnet hosts
    -V, --version        Prints version information
    -v                   Increase verbosity (-vvv supported)

OPTIONS:
    -c, --config <config>                   Configuration file to use
        --folder <folder>                   Path to the contents directory [default: ~/.config/darkfi/fud]
        --p2p-accept <p2p-accept>...        P2P accept addresses (repeatable flag)
        --p2p-external <p2p-external>...    P2P external addresses (repeatable flag)
        --peers <peers>...                  Connect to peer (repeatable flag)
        --rpc-listen <rpc-listen>           JSON-RPC listen URL [default: tcp://127.0.0.1:13336]
        --seeds <seeds>...                  Connect to seed (repeatable flag)
        --slots <slots>                     Connection slots [default: 8]
        --transports <transports>...        Prefered transports for outbound connections (repeatable flag)

On first execution, daemon will create default config file ~/.config/darkfi/fud_config.toml. Configuration must be verified and application should be configured accordingly. Additionaly, default content folder will be created at ~/.config/darkfi/fud.

Run fud as follows:

% fud
13:23:04 [INFO] Starting JSON-RPC server
13:23:04 [INFO] Starting sync P2P network
13:23:04 [WARN] Skipping seed sync process since no seeds are configured.
13:23:04 [INFO] Initializing fud dht state for folder: "/home/x/.config/darkfi/fud"
13:23:04 [INFO] Not configured for accepting incoming connections.
13:23:04 [INFO] JSON-RPC listener bound to tcp://127.0.0.1:13337
13:23:04 [INFO] Entry: seedd_config.toml
13:23:04 [INFO] Starting 8 outbound connection slots.
13:23:04 [INFO] Entry: lt.py
13:23:07 [INFO] Caught termination signal, cleaning up and exiting...

fu

Command-line client for fud.

Usage

fu 0.3.0
Command-line client for fud

USAGE:
    fu [OPTIONS] <SUBCOMMAND>

OPTIONS:
    -e, --endpoint <ENDPOINT>    fud JSON-RPC endpoint [default: tcp://127.0.0.1:13336]
    -h, --help                   Print help information
    -v                           Increase verbosity (-vvv supported)
    -V, --version                Print version information

SUBCOMMANDS:
    get     Retrieve provided file name from the fud network
    help    Print this message or the help of the given subcommand(s)
    list    List fud folder contents
    sync    Sync fud folder contents and signal network for record changes

Execution examples:

% fu list
13:25:14 [INFO] ----------Content-------------
13:25:14 [INFO] 	seedd_config.toml
13:25:14 [INFO] 	lt.py
13:25:14 [INFO] ------------------------------
13:25:14 [INFO] ----------New files-----------
13:25:14 [INFO] No new files to import.
13:25:14 [INFO] ------------------------------
13:25:14 [INFO] ----------Removed keys--------
13:25:14 [INFO] No keys were removed.
13:25:14 [INFO] ------------------------------

% fu sync
13:25:46 [INFO] Daemon synced successfully!

% fu get -f lt.py
13:26:23 [INFO] File waits you at: /home/x/.config/darkfi/fud/lt.py

% fu get -f sdsd
Error: JsonRpcError("\"Did not find key\"")