Deleted Added
full compact
privsep_commands.h (189261) privsep_commands.h (214734)
1/*
2 * WPA Supplicant - privilege separation commands
3 * Copyright (c) 2007-2009, Jouni Malinen <j@w1.fi>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *

--- 4 unchanged lines hidden (view full) ---

13 */
14
15#ifndef PRIVSEP_COMMANDS_H
16#define PRIVSEP_COMMANDS_H
17
18enum privsep_cmd {
19 PRIVSEP_CMD_REGISTER,
20 PRIVSEP_CMD_UNREGISTER,
1/*
2 * WPA Supplicant - privilege separation commands
3 * Copyright (c) 2007-2009, Jouni Malinen <j@w1.fi>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *

--- 4 unchanged lines hidden (view full) ---

13 */
14
15#ifndef PRIVSEP_COMMANDS_H
16#define PRIVSEP_COMMANDS_H
17
18enum privsep_cmd {
19 PRIVSEP_CMD_REGISTER,
20 PRIVSEP_CMD_UNREGISTER,
21 PRIVSEP_CMD_SET_WPA,
22 PRIVSEP_CMD_SCAN,
23 PRIVSEP_CMD_GET_SCAN_RESULTS,
24 PRIVSEP_CMD_ASSOCIATE,
25 PRIVSEP_CMD_GET_BSSID,
26 PRIVSEP_CMD_GET_SSID,
27 PRIVSEP_CMD_SET_KEY,
28 PRIVSEP_CMD_GET_CAPA,
29 PRIVSEP_CMD_L2_REGISTER,
30 PRIVSEP_CMD_L2_UNREGISTER,
31 PRIVSEP_CMD_L2_NOTIFY_AUTH_START,
32 PRIVSEP_CMD_L2_SEND,
21 PRIVSEP_CMD_SCAN,
22 PRIVSEP_CMD_GET_SCAN_RESULTS,
23 PRIVSEP_CMD_ASSOCIATE,
24 PRIVSEP_CMD_GET_BSSID,
25 PRIVSEP_CMD_GET_SSID,
26 PRIVSEP_CMD_SET_KEY,
27 PRIVSEP_CMD_GET_CAPA,
28 PRIVSEP_CMD_L2_REGISTER,
29 PRIVSEP_CMD_L2_UNREGISTER,
30 PRIVSEP_CMD_L2_NOTIFY_AUTH_START,
31 PRIVSEP_CMD_L2_SEND,
33 PRIVSEP_CMD_SET_MODE,
34 PRIVSEP_CMD_SET_COUNTRY,
35};
36
37struct privsep_cmd_associate
38{
39 u8 bssid[ETH_ALEN];
40 u8 ssid[32];
41 size_t ssid_len;

--- 25 unchanged lines hidden (view full) ---

67 PRIVSEP_EVENT_DISASSOC,
68 PRIVSEP_EVENT_ASSOCINFO,
69 PRIVSEP_EVENT_MICHAEL_MIC_FAILURE,
70 PRIVSEP_EVENT_INTERFACE_STATUS,
71 PRIVSEP_EVENT_PMKID_CANDIDATE,
72 PRIVSEP_EVENT_STKSTART,
73 PRIVSEP_EVENT_FT_RESPONSE,
74 PRIVSEP_EVENT_RX_EAPOL,
32 PRIVSEP_CMD_SET_COUNTRY,
33};
34
35struct privsep_cmd_associate
36{
37 u8 bssid[ETH_ALEN];
38 u8 ssid[32];
39 size_t ssid_len;

--- 25 unchanged lines hidden (view full) ---

65 PRIVSEP_EVENT_DISASSOC,
66 PRIVSEP_EVENT_ASSOCINFO,
67 PRIVSEP_EVENT_MICHAEL_MIC_FAILURE,
68 PRIVSEP_EVENT_INTERFACE_STATUS,
69 PRIVSEP_EVENT_PMKID_CANDIDATE,
70 PRIVSEP_EVENT_STKSTART,
71 PRIVSEP_EVENT_FT_RESPONSE,
72 PRIVSEP_EVENT_RX_EAPOL,
75 PRIVSEP_EVENT_STA_RX,
76};
77
78#endif /* PRIVSEP_COMMANDS_H */
73};
74
75#endif /* PRIVSEP_COMMANDS_H */