Results 4 issues of Gohy Leandre

The `change` event is triggered when a `portal-target` is registered/unregistered. The `portal-target` component watches the `transports` object and anytime the content of it changes then the `change` event is triggered...

enhancement
feature

The address.mac function doesn't return the mac address of the iface if it doesn't have an ip address. I only test it under linux, but i can see in the...

`%2X` format string reads `sizeof(int)` bytes, but only 2 hexadecimal characters are supplied by `c` pointer which is 1 byte long. Using `%2hhX` tells sscanf to read sizeof(char) bytes or...

Mac OS X doesn't provide `endian.h`. It's only required for the `be32toh` and `htobe32` utility functions. Mac OS X provides similare functions in `libkern/OSByteOrder.h`. Respectively `OSSwapHostToBigInt32` for `htobe32` and `OSSwapBigToHostInt32`...