Thiago Macieira

Results 85 comments of Thiago Macieira

`getaddrinfo` implements the load balancing itself. Try it yourself: run `getent ahosts chat.freenode.net` multiple times in a row and you'll see the order of the entries change. I believe the...

For IPv6, because the world is divided into blocks, it actually works, except for the older "Next Level Allocations" from the late 1990s and early 2000s. Those either work or...

The only thing that needs to be prioritised is to use IPv6 first if I am on an IPv6-native connection and IPv4 first otherwise. How you find that out, I...

That is retained for the `verbose` flag. All others don't have an API to set a value with.

``` [Meta] Version = "1.0.2" [Runtime] [Runtime.Version] Semver = "3.0.0-beta.1" Commit = "3d44244608b5cbe9e1295520aa9f54a494954b23" OCI = "1.0.0-rc5" [Runtime.Config] GlobalLogPath = "" [Runtime.Config.Location] Path = "/etc/clear-containers/configuration.toml" Resolved = "/etc/clear-containers/configuration.toml" [Hypervisor] MachineType =...

Same error: ``` [Meta] Version = "1.0.2" [Runtime] [Runtime.Version] Semver = "3.0.0-beta.2" Commit = "06023ea" OCI = "1.0.0-rc5" [Runtime.Config] GlobalLogPath = "" [Runtime.Config.Location] Path = "/etc/clear-containers/configuration.toml" Resolved = "/etc/clear-containers/configuration.toml" [Hypervisor]...

If I edit /etc/clear-containers/configuration.toml and change the hypervisor to qemu-lite-system-x86_64, it runs.

@grahamwhaley, that came from the binary packages provided via OBS: https://build.opensuse.org/project/show/home:clearcontainers:clear-containers-3-staging The .spec file doesn't appear to be doing any shenanigans to the config file, so that came from source....

``` sh-4.4$ for file in /etc/os-release /usr/lib/os-release; do if [ -e $file ]; then grep ^ID= $file|cut -d= -f2-|tr -d '"'; break; fi; done opensuse ```

There's no need for new API. If you need a custom allocator, do: ```c size_t n; err = cbor_value_calculate_string_length(value, &n); if (!err) { buffer = allocate_somehow(n); err = cbor_value_copy_text_string(value, buffer,...