forked from dragino/rssh-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil_rssh.h
40 lines (35 loc) · 876 Bytes
/
util_rssh.h
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
/*
* ____ ____ _ ____ ___ _ _ ___
* | _ \| _ \ / \ / ___|_ _| \ | |/ _ \
* | | | | |_) | / _ \| | _ | || \| | | | |
* | |_| | _ < / ___ \ |_| || || |\ | |_| |
* |____/|_| \_\/_/ \_\____|___|_| \_|\___/
*
* Dragino RSSH SERVICE
*
* See http://www.dragino.com for more information about
* the lora gateway project. Please do not directly contact
* any of the maintainers of this project for assistance;
*
* This program is free software, distributed under the terms of
* the GNU General Public License Version 2. See the LICENSE file
* at the top of the source tree.
*
* Maintainer: skerlan
*
*/
/*!
* \file
* \brief
*/
#ifndef _LGW_RSSH_H
#define _LGW_RSSH_H
#include <stdio.h>
#include <stdint.h>
typedef enum _request_cmd_e {
PULL_PORT,
PUSH_STATUS,
ACK_PORT,
ACK_STATUS
} request_cmd_e;
#endif