Davide Pesavento | 16203ea | 2024-01-01 15:46:44 -0500 | [diff] [blame] | 1 | ; "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 DiBenedetto | a8659ff | 2014-12-04 14:50:28 -0700 | [diff] [blame] | 3 | ; |
| 4 | ; For example: |
Davide Pesavento | 16203ea | 2024-01-01 15:46:44 -0500 | [diff] [blame] | 5 | ; unix:///tmp/nfd/nfd.sock |
Steve DiBenedetto | a8659ff | 2014-12-04 14:50:28 -0700 | [diff] [blame] | 6 | ; tcp://192.0.2.1 |
| 7 | ; tcp4://example.com:6363 |
Davide Pesavento | 16203ea | 2024-01-01 15:46:44 -0500 | [diff] [blame] | 8 | ; tcp6://[2001:db8::1]:6363 |
Davide Pesavento | 534b841 | 2018-12-08 19:19:09 -0500 | [diff] [blame] | 9 | ; |
Davide Pesavento | 16203ea | 2024-01-01 15:46:44 -0500 | [diff] [blame] | 10 | ; 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 Newberry | 52a803c | 2020-04-07 00:01:12 -0700 | [diff] [blame] | 12 | ; |
Davide Pesavento | 16203ea | 2024-01-01 15:46:44 -0500 | [diff] [blame] | 13 | ;transport=unix:///var/run/nfd/nfd.sock |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 14 | |
Davide Pesavento | 16203ea | 2024-01-01 15:46:44 -0500 | [diff] [blame] | 15 | ; "pib" determines which Public Information Base (PIB) should used by default in applications. |
Davide Pesavento | 534b841 | 2018-12-08 19:19:09 -0500 | [diff] [blame] | 16 | ; If "pib" is not specified, a platform-dependent default will be used. |
Yingdi Yu | f56c68f | 2014-04-24 21:50:13 -0700 | [diff] [blame] | 17 | ; If "pib" is specified, it may have a value of: |
Davide Pesavento | 16203ea | 2024-01-01 15:46:44 -0500 | [diff] [blame] | 18 | ; - "pib-sqlite3" |
Davide Pesavento | 534b841 | 2018-12-08 19:19:09 -0500 | [diff] [blame] | 19 | ; |
| 20 | ;pib=pib-sqlite3 |
Yingdi Yu | f56c68f | 2014-04-24 21:50:13 -0700 | [diff] [blame] | 21 | |
| 22 | ; "tpm" determines which Trusted Platform Module (TPM) should used by default in applications. |
Davide Pesavento | 534b841 | 2018-12-08 19:19:09 -0500 | [diff] [blame] | 23 | ; If "tpm" is not specified, a platform-dependent default will be used. |
Yingdi Yu | f56c68f | 2014-04-24 21:50:13 -0700 | [diff] [blame] | 24 | ; If "tpm" is specified, it may have a value of: |
Davide Pesavento | 16203ea | 2024-01-01 15:46:44 -0500 | [diff] [blame] | 25 | ; - "tpm-osxkeychain" (default on macOS) |
| 26 | ; - "tpm-file" (default on all other platforms) |
Davide Pesavento | 534b841 | 2018-12-08 19:19:09 -0500 | [diff] [blame] | 27 | ; |
| 28 | ;tpm=tpm-file |