aboutsummaryrefslogtreecommitdiff
path: root/src/print_ip_addr.c
AgeCommit message (Collapse)AuthorFilesLines
2018-06-11Fix shown IP address belonging to wrong interfaceOlivier Gayot1-2/+31
The following commit: 6a75ea9 Show IP address when address has a label introduced a way to show the IP address of an interface when a label is associated to the IP. When a label is associated to an IP, the structure returned by getifaddrs() has the label concatenated to the interface name in the .ifa_name field as in the following example: struct ifaddrs ifaddr = { .ifa_name = "eth0:mylabel", }; As a consequence, using a strict comparison between the interface name and the .ifa_name field yields a falsy result. However, checking if the .ifa_name starts with the interface name (e.g. eth0) does not work either because other network interfaces can have a name which starts with eth0. This commit solves the issue by stripping out the optional label from the .ifa_name field before making a strict comparison with the interface name. Fix #283 Signed-off-by: Olivier Gayot <olivier.gayot@sigexec.com>
2018-06-04Simplify the algorithm used to determine the IP addressOlivier Gayot1-10/+13
Signed-off-by: Olivier Gayot <olivier.gayot@sigexec.com>
2018-03-29Show IP address when address has a labelDan Robertson1-2/+3
If an address has been added with a label, ensure the correct address is shown.
2017-12-11Add IPv6 address when IPv4 isn't available (#247)Emeric Planet1-4/+9
2015-03-16clang-format-3.5 -i **/*.[ch], update modelineMichael Stapelberg1-37/+36
From here on, we’ll use clang-format to automatically format the source. This has worked well in i3, so we are introducing it for i3status.
2012-05-09Error handling: Never output null as full_text (JSON), prefix messages with ↵Michael Stapelberg1-1/+1
i3status (Thanks Artemis) The former made i3bar crash, the latter is helpful for debugging.
2012-04-28Fix include order; fixes build on OpenBSD.Jasper Lievisse Adriaanse1-2/+3
2012-03-25Properly output JSON with libyajlMichael Stapelberg1-2/+0
2010-07-21Bugfix: Correctly check for interface up/down-status (Thanks docsteel)Michael Stapelberg1-3/+6
2010-01-26get_ip_address: return NULL instead of downMichael Stapelberg1-4/+2
2009-10-11Breaks configfiles! Major refactoring of i3status, see belowMichael Stapelberg1-0/+67
We finally switched to libconfuse for a configuration file format which does not require much work for the programmer nor for the user. Plus, it avoids the Not-Invented-Here syndrome of yet another config file format. Furthermore, as a consequence of providing format strings for every "module" (ipv6, wireless, …), we directly print the output and thus we needed to drop support for wmii. This allowed us to get rid of quite some complexity. Documentation about the new configuration file and options will follow. This commit is the beginning of what will be i3status v2.0.