summaryrefslogtreecommitdiffstats
path: root/include/socketcan_netlink.h
blob: 6b3b2ccdbf4fa83ed0d1f6bc8d93947b72355ddc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
 * socketcan_netlink.h
 *
 * (C) 2009 Luotao Fu <l.fu@pengutronix.de> 
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the version 2 of the GNU General Public License
 * as published by the Free Software Foundation
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */


#ifndef _SOCKETCAN_NETLINK_H
#define _SOCKETCAN_NETLINK_H

#define IFLA_CAN_MAX	(__IFLA_CAN_MAX - 1)
#define IF_UP 1
#define IF_DOWN 2

#define GET_STATE 1
#define GET_RESTART_MS 2
#define GET_BITTIMING 3
#define GET_CTRLMODE 4

int if_down(int fd, const char *name);
int if_up(int fd, const char *name);

int set_restart(const char *name);
int set_bitrate(const char *name, __u32 bitrate);
int set_restart_ms(const char *name, __u32 restart_ms);
int set_ctrlmode(const char *name, __u32 mode, __u32 flags);

int get_state(const char *name);
__u32 get_restart_ms(const char *name);
int get_bittiming(const char *name, struct can_bittiming *bt);
int get_ctrlmode(const char *name, struct can_ctrlmode *cm);

#endif