Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | build: add default ignore network interface prefix | Stefan Becker | 2019-06-27 | 1 | -1/+1 |
| | | | | | | | | | | | | | By default libnice now ignores network interfaces from virtual machines and containers, i.e. names that start with "docker", "veth", "virbr" and "vnet". If you want to disable this feature override the default with ./configure --without-ignored-network-interface-prefix ... ./configure --with-ignored-network-interface-prefix= ... meson setup -D ignored-network-interface-prefix= ... meson setup -D ignored-network-interface-prefix=[] ... | ||||
* | build: make prefix option accept a list of strings | Stefan Becker | 2019-06-27 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | The parameter for the ignored network interface prefix build option accepts a comma-separated string now. This list will be converted to a comma-separated list of string literals for the C code. Disable the feature: ./configure ... ./configure --with-ignored-network-interface-prefix= ... meson setup -D ignored-network-interface-prefix= ... meson setup -D ignored-network-interface-prefix=[] ... Ignore interfaces whose names start with "virbr": ./configure --with-ignored-network-interface-prefix=virbr ... meson setup -D ignored-network-interface-prefix=virbr ... Ignore interfaces whose names start with "virbr" or "veth": ./configure --with-ignored-network-interface-prefix=virbr,veth ... meson setup -D ignored-network-interface-prefix=virbr,veth ... | ||||
* | meson: allow selecting crypto library manually via an option | Tim-Philipp Müller | 2018-12-14 | 1 | -0/+1 |
| | |||||
* | Add support for Meson build system | Tim-Philipp Müller | 2018-12-14 | 1 | -0/+16 |