Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 1 | /* Copyright 2011-2013 Autronica Fire and Security AS |
| 2 | * |
| 3 | * This program is free software; you can redistribute it and/or modify it |
| 4 | * under the terms of the GNU General Public License as published by the Free |
| 5 | * Software Foundation; either version 2 of the License, or (at your option) |
| 6 | * any later version. |
| 7 | * |
| 8 | * Author(s): |
| 9 | * 2011-2013 Arvid Brodin, arvid.brodin@xdin.com |
| 10 | */ |
| 11 | |
| 12 | #ifndef __HSR_NETLINK_H |
| 13 | #define __HSR_NETLINK_H |
| 14 | |
| 15 | #include <linux/if_ether.h> |
| 16 | #include <linux/module.h> |
| 17 | #include <uapi/linux/hsr_netlink.h> |
| 18 | |
| 19 | struct hsr_priv; |
| 20 | |
| 21 | int __init hsr_netlink_init(void); |
| 22 | void __exit hsr_netlink_exit(void); |
| 23 | |
| 24 | void hsr_nl_ringerror(struct hsr_priv *hsr_priv, unsigned char addr[ETH_ALEN], |
| 25 | int dev_idx); |
| 26 | void hsr_nl_nodedown(struct hsr_priv *hsr_priv, unsigned char addr[ETH_ALEN]); |
| 27 | void hsr_nl_framedrop(int dropcount, int dev_idx); |
| 28 | void hsr_nl_linkdown(int dev_idx); |
| 29 | |
| 30 | #endif /* __HSR_NETLINK_H */ |