|
| 1 | +/* |
| 2 | + This program is free software; you can redistribute it and/or modify |
| 3 | + it under the terms of the GNU General Public License as published by |
| 4 | + the Free Software Foundation; either version 2 of the License, or |
| 5 | + (at your option) any later version. |
| 6 | +
|
| 7 | + This program is distributed in the hope that it will be useful, |
| 8 | + but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9 | + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 10 | + GNU General Public License for more details. |
| 11 | +
|
| 12 | + You should have received a copy of the GNU General Public License |
| 13 | + along with this program; if not, write to the Free Software |
| 14 | + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 15 | +
|
| 16 | + xrdp: A Remote Desktop Protocol server. |
| 17 | + Copyright (C) Jay Sorg 2005-2008 |
| 18 | +*/ |
| 19 | + |
| 20 | +/** |
| 21 | + * |
| 22 | + * @file libscp_commands_mng.h |
| 23 | + * @brief libscp data types definitions |
| 24 | + * @author Simone Fedele |
| 25 | + * |
| 26 | + */ |
| 27 | + |
| 28 | +#ifndef LIBSCP_COMMANDS_MNG_H |
| 29 | +#define LIBSCP_COMMANDS_MNG_H |
| 30 | + |
| 31 | +#define SCP_CMD_MNG_LOGIN 0x0001 |
| 32 | +#define SCP_CMD_MNG_LOGIN_ALLOW 0x0002 |
| 33 | +#define SCP_CMD_MNG_LOGIN_DENY 0x0003 |
| 34 | +#define SCP_CMD_MNG_CMD_ERROR 0x0004 |
| 35 | +#define SCP_CMD_MNG_LIST_REQ 0x0005 |
| 36 | +#define SCP_CMD_MNG_LIST 0x0006 |
| 37 | +#define SCP_CMD_MNG_ACTION 0x0007 |
| 38 | + |
| 39 | +#endif |
0 commit comments