diff options
author | Tom Gundersen <teg@jklm.no> | 2016-06-08 23:10:16 +0200 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2016-06-08 23:10:16 +0200 |
commit | d9c11f2b01463e33a0b453e013786b5b79182dbe (patch) | |
tree | abb611242bb5a77acefffe053b80840dfd7cd32d /src/systemd | |
parent | e80f080bffeab01390a086c802f7e47bd11fc369 (diff) | |
parent | 889b550f2dc27b7696781d3d9d91e8de28fd8fee (diff) | |
download | systemd-d9c11f2b01463e33a0b453e013786b5b79182dbe.tar.gz |
Merge pull request #3431 from poettering/network-fixes
put limits on addresses and routers per link and per network
Diffstat (limited to 'src/systemd')
-rw-r--r-- | src/systemd/sd-netlink.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemd/sd-netlink.h b/src/systemd/sd-netlink.h index 3ae110c080..7efa8ebe5a 100644 --- a/src/systemd/sd-netlink.h +++ b/src/systemd/sd-netlink.h @@ -43,7 +43,7 @@ typedef int (*sd_netlink_message_handler_t)(sd_netlink *nl, sd_netlink_message * int sd_netlink_new_from_netlink(sd_netlink **nl, int fd); int sd_netlink_open(sd_netlink **nl); int sd_netlink_open_fd(sd_netlink **nl, int fd); -int sd_netlink_inc_rcvbuf(const sd_netlink *const rtnl, const int size); +int sd_netlink_inc_rcvbuf(sd_netlink *nl, const size_t size); sd_netlink *sd_netlink_ref(sd_netlink *nl); sd_netlink *sd_netlink_unref(sd_netlink *nl); |