1 Star 0 Fork 1

九五二七 / lrp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
msg.h 1.29 KB
一键复制 编辑 原始数据 按行查看 历史
九五二七 提交于 2023-05-19 14:52 . fix:config
/*
Copyright 2023 YaoZinan zinan@outlook.com an-archi.cc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#ifndef A6F38BFD_BDD5_409F_9813_5DE3F4289DCB
#define A6F38BFD_BDD5_409F_9813_5DE3F4289DCB
#include <stdint.h>
#include "config.h"
namespace lrp {
enum class MsgId {
MSG_CONFIG = 0x100,
MSG_DATA = 0x101,
MSG_HEARTBEAT = 0x102,
MSG_CONN = 0x103,
MSG_CONN_CONFIRM = 0x104
};
struct MsgHeader {
int id;
int chan; // channel index.
uint16_t length; // payload length.
} __attribute__( ( __packed__ ) );
struct MsgConnConfirm {
bool success;
} __attribute__( ( __packed__ ) );
struct MsgConfig {
int count;
TunnelCfg cfg[0];
} __attribute__( ( __packed__ ) );
} // namespace lrp
#endif /* A6F38BFD_BDD5_409F_9813_5DE3F4289DCB */
C++
1
https://gitee.com/an-archi/lrp.git
git@gitee.com:an-archi/lrp.git
an-archi
lrp
lrp
master

搜索帮助