blob: 453a8ed314670cdf140d5a946a6bbeb9b7457a9d [file] [log] [blame]
Davide Pesavento16203ea2024-01-01 15:46:44 -05001; "transport" specifies the default transport connection used by the client-side face to communicate
2; with a (local or remote) NDN forwarder. The value must be a Face URI with a Unix or TCP scheme.
Steve DiBenedettoa8659ff2014-12-04 14:50:28 -07003;
4; For example:
Davide Pesavento16203ea2024-01-01 15:46:44 -05005; unix:///tmp/nfd/nfd.sock
Steve DiBenedettoa8659ff2014-12-04 14:50:28 -07006; tcp://192.0.2.1
7; tcp4://example.com:6363
Davide Pesavento16203ea2024-01-01 15:46:44 -05008; tcp6://[2001:db8::1]:6363
Davide Pesavento534b8412018-12-08 19:19:09 -05009;
Davide Pesavento16203ea2024-01-01 15:46:44 -050010; The default value of this field is platform-dependent, being "unix:///run/nfd/nfd.sock" on Linux
11; and "unix:///var/run/nfd/nfd.sock" on other platforms.
Eric Newberry52a803c2020-04-07 00:01:12 -070012;
Davide Pesavento16203ea2024-01-01 15:46:44 -050013;transport=unix:///var/run/nfd/nfd.sock
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -060014
Davide Pesavento16203ea2024-01-01 15:46:44 -050015; "pib" determines which Public Information Base (PIB) should used by default in applications.
Davide Pesavento534b8412018-12-08 19:19:09 -050016; If "pib" is not specified, a platform-dependent default will be used.
Yingdi Yuf56c68f2014-04-24 21:50:13 -070017; If "pib" is specified, it may have a value of:
Davide Pesavento16203ea2024-01-01 15:46:44 -050018; - "pib-sqlite3"
Davide Pesavento534b8412018-12-08 19:19:09 -050019;
20;pib=pib-sqlite3
Yingdi Yuf56c68f2014-04-24 21:50:13 -070021
22; "tpm" determines which Trusted Platform Module (TPM) should used by default in applications.
Davide Pesavento534b8412018-12-08 19:19:09 -050023; If "tpm" is not specified, a platform-dependent default will be used.
Yingdi Yuf56c68f2014-04-24 21:50:13 -070024; If "tpm" is specified, it may have a value of:
Davide Pesavento16203ea2024-01-01 15:46:44 -050025; - "tpm-osxkeychain" (default on macOS)
26; - "tpm-file" (default on all other platforms)
Davide Pesavento534b8412018-12-08 19:19:09 -050027;
28;tpm=tpm-file