Steve DiBenedetto | a8659ff | 2014-12-04 14:50:28 -0700 | [diff] [blame] | 1 | ; "transport" specifies Face's default transport connection. |
Davide Pesavento | 534b841 | 2018-12-08 19:19:09 -0500 | [diff] [blame] | 2 | ; The value can be a "unix:" or "tcp4:" Face URI. |
Steve DiBenedetto | a8659ff | 2014-12-04 14:50:28 -0700 | [diff] [blame] | 3 | ; |
| 4 | ; For example: |
Steve DiBenedetto | a8659ff | 2014-12-04 14:50:28 -0700 | [diff] [blame] | 5 | ; unix:///var/run/nfd.sock |
| 6 | ; tcp://192.0.2.1 |
| 7 | ; tcp4://example.com:6363 |
Davide Pesavento | 534b841 | 2018-12-08 19:19:09 -0500 | [diff] [blame] | 8 | ; |
Eric Newberry | 52a803c | 2020-04-07 00:01:12 -0700 | [diff] [blame] | 9 | ; The default value of this field is platform-dependent, being unix:///run/nfd.sock on Linux and |
| 10 | ; unix:///var/run/nfd.sock on other platforms. |
| 11 | ; |
| 12 | ;transport=unix:///var/run/nfd.sock |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 13 | |
Yingdi Yu | f56c68f | 2014-04-24 21:50:13 -0700 | [diff] [blame] | 14 | ; "pib" determines which Public Info Base (PIB) should used by default in applications. |
Davide Pesavento | 534b841 | 2018-12-08 19:19:09 -0500 | [diff] [blame] | 15 | ; If "pib" is not specified, a platform-dependent default will be used. |
Yingdi Yu | f56c68f | 2014-04-24 21:50:13 -0700 | [diff] [blame] | 16 | ; If "pib" is specified, it may have a value of: |
Alexander Afanasyev | 5208d0e | 2015-06-03 16:42:09 -0700 | [diff] [blame] | 17 | ; pib-sqlite3 |
Davide Pesavento | 534b841 | 2018-12-08 19:19:09 -0500 | [diff] [blame] | 18 | ; |
| 19 | ;pib=pib-sqlite3 |
Yingdi Yu | f56c68f | 2014-04-24 21:50:13 -0700 | [diff] [blame] | 20 | |
| 21 | ; "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] | 22 | ; If "tpm" is not specified, a platform-dependent default will be used. |
Yingdi Yu | f56c68f | 2014-04-24 21:50:13 -0700 | [diff] [blame] | 23 | ; If "tpm" is specified, it may have a value of: |
Davide Pesavento | 534b841 | 2018-12-08 19:19:09 -0500 | [diff] [blame] | 24 | ; tpm-osxkeychain (default on macOS) |
| 25 | ; tpm-file (default in operating systems other than macOS) |
| 26 | ; |
| 27 | ;tpm=tpm-file |