rtnl-util.c revision d595c5cc9e894c3608ed634052b0ba93aa94bf2f
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright (C) 2013 Tom Gundersen <teg@jklm.no>
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <linux/rtnetlink.h>
#include "sd-rtnl.h"
#include "rtnl-util.h"
#include "rtnl-internal.h"
int r;
if (r < 0)
return r;
if (r < 0)
return r;
if (r < 0)
return r;
return 0;
}
bool need_update = false;
int r;
return 0;
if (r < 0)
return r;
if (alias) {
if (r < 0)
return r;
need_update = true;
}
if (mac) {
if (r < 0)
return r;
need_update = true;
}
if (mtu > 0) {
if (r < 0)
return r;
need_update = true;
}
if (need_update) {
if (r < 0)
return r;
}
return 0;
}
int r;
if (r < 0)
return r;
return 0;
}
switch (type) {
case RTM_NEWROUTE:
case RTM_GETROUTE:
case RTM_DELROUTE:
return true;
default:
return false;
}
}
switch (type) {
case RTM_NEWLINK:
case RTM_SETLINK:
case RTM_GETLINK:
case RTM_DELLINK:
return true;
default:
return false;
}
}
switch (type) {
case RTM_NEWADDR:
case RTM_GETADDR:
case RTM_DELADDR:
return true;
default:
return false;
}
}
unsigned short type;
void *name;
if (type == IFLA_IFNAME) {
return 0;
}
}
return -ENOENT;
}