summaryrefslogtreecommitdiff
path: root/src/dhcp/nm-dhcp-client-logging.h
Commit message (Collapse)AuthorAgeFilesLines
* all: drop emacs file variables from source filesThomas Haller2019-06-111-1/+0
| | | | | | | | | | | | | | | | | | | | | | We no longer add these. If you use Emacs, configure it yourself. Also, due to our "smart-tab" usage the editor anyway does a subpar job handling our tabs. However, on the upside every user can choose whatever tab-width he/she prefers. If "smart-tabs" are used properly (like we do), every tab-width will work. No manual changes, just ran commands: F=($(git grep -l -e '-\*-')) sed '1 { /\/\* *-\*- *[mM]ode.*\*\/$/d }' -i "${F[@]}" sed '1,4 { /^\(#\|--\|dnl\) *-\*- [mM]ode/d }' -i "${F[@]}" Check remaining lines with: git grep -e '-\*-' The ultimate purpose of this is to cleanup our files and eventually use SPDX license identifiers. For that, first get rid of the boilerplate lines.
* core/dhcp: use addr-family parameter for instead of booleanThomas Haller2017-09-111-3/+18
| | | | | | | | | | | | | In many cases we want to treat IPv4 and IPv6 generically. That looks nicer if we distingish by an @addr_family integer, instead of a boolean. Replace the @is_ipv6 boolean with an @addr_family paramter. The @is_ipv6 boolean is inconsistent with other places where we use @is_ipv4 to indicate the opposite. Eventually, we should use @addr_family everywhere. Also, at the call site it's not immediately clear what TRUE/FALSE means, here AF_INET/AF_INET6 is better.
* dhcp: log the device contextLubomir Rintel2017-03-241-2/+2
|
* logging: log device and connection along with the messageLubomir Rintel2017-03-241-2/+2
|
* build: rename "src/dhcp-manager" to "src/dhcp"Thomas Haller2016-11-211-0/+77
The dhcp directory does not only contain the manager instance, but various files related to DHCP. Rename.