diff options
author | Benedikt Spranger <b.spranger@linutronix.de> | 2012-11-29 18:48:46 (GMT) |
---|---|---|
committer | Thomas Graf <tgraf@suug.ch> | 2012-11-29 21:17:58 (GMT) |
commit | c86088ff01b867431d439b4524465709f47dd700 (patch) | |
tree | 8c93e77f6922cbcf89b502e5fbdcc189b19d561f /include | |
parent | 5251188673e425bfddcbbe7fad19f7e0e945bf62 (diff) | |
download | libnl-c86088ff01b867431d439b4524465709f47dd700.zip libnl-c86088ff01b867431d439b4524465709f47dd700.tar.gz libnl-c86088ff01b867431d439b4524465709f47dd700.tar.bz2 |
link: socket-CAN helper functions
Add helper functions to make socket-CAN configuration easy.
Signed-off-by: Benedikt Spranger <b.spranger@linutronix.de>
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Diffstat (limited to 'include')
-rw-r--r-- | include/netlink/route/link/can.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/include/netlink/route/link/can.h b/include/netlink/route/link/can.h index 0a99dfd..90296f1 100644 --- a/include/netlink/route/link/can.h +++ b/include/netlink/route/link/can.h @@ -25,6 +25,33 @@ extern int rtnl_link_is_can(struct rtnl_link *link); extern char *rtnl_link_can_ctrlmode2str(int, char *, size_t); extern int rtnl_link_can_str2ctrlmode(const char *); +extern int rtnl_link_can_restart(struct rtnl_link *); +extern int rtnl_link_can_freq(struct rtnl_link *, uint32_t *); + +extern int rtnl_link_can_berr_rx(struct rtnl_link *); +extern int rtnl_link_can_berr_tx(struct rtnl_link *); +extern int rtnl_link_can_berr(struct rtnl_link *, struct can_berr_counter *); + +extern int rtnl_link_can_get_bt_const(struct rtnl_link *, + struct can_bittiming_const *); +extern int rtnl_link_can_get_bittiming(struct rtnl_link *, + struct can_bittiming *); +extern int rtnl_link_can_set_bittiming(struct rtnl_link *, + struct can_bittiming *); + +extern int rtnl_link_can_get_bitrate(struct rtnl_link *, uint32_t *); +extern int rtnl_link_can_set_bitrate(struct rtnl_link *, uint32_t); + +extern int rtnl_link_can_get_sample_point(struct rtnl_link *, uint32_t *); +extern int rtnl_link_can_set_sample_point(struct rtnl_link *, uint32_t); + +extern int rtnl_link_can_get_restart_ms(struct rtnl_link *, uint32_t *); +extern int rtnl_link_can_set_restart_ms(struct rtnl_link *, uint32_t); + +extern int rtnl_link_can_get_ctrlmode(struct rtnl_link *, uint32_t *); +extern int rtnl_link_can_set_ctrlmode(struct rtnl_link *, uint32_t); +extern int rtnl_link_can_unset_ctrlmode(struct rtnl_link *, uint32_t); + #ifdef __cplusplus } #endif |