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 | ; |
Steve DiBenedetto | a8659ff | 2014-12-04 14:50:28 -0700 | [diff] [blame] | 9 | transport=unix:///var/run/nfd.sock |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 10 | |
Yingdi Yu | f56c68f | 2014-04-24 21:50:13 -0700 | [diff] [blame] | 11 | ; "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] | 12 | ; If "pib" is not specified, a platform-dependent default will be used. |
Yingdi Yu | f56c68f | 2014-04-24 21:50:13 -0700 | [diff] [blame] | 13 | ; If "pib" is specified, it may have a value of: |
Alexander Afanasyev | 5208d0e | 2015-06-03 16:42:09 -0700 | [diff] [blame] | 14 | ; pib-sqlite3 |
Davide Pesavento | 534b841 | 2018-12-08 19:19:09 -0500 | [diff] [blame] | 15 | ; |
| 16 | ;pib=pib-sqlite3 |
Yingdi Yu | f56c68f | 2014-04-24 21:50:13 -0700 | [diff] [blame] | 17 | |
| 18 | ; "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] | 19 | ; If "tpm" is not specified, a platform-dependent default will be used. |
Yingdi Yu | f56c68f | 2014-04-24 21:50:13 -0700 | [diff] [blame] | 20 | ; If "tpm" is specified, it may have a value of: |
Davide Pesavento | 534b841 | 2018-12-08 19:19:09 -0500 | [diff] [blame] | 21 | ; tpm-osxkeychain (default on macOS) |
| 22 | ; tpm-file (default in operating systems other than macOS) |
| 23 | ; |
| 24 | ;tpm=tpm-file |