1 Star 0 Fork 0

bisheng/CheckPointRectReconnect

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
MyPLC.h 856 Bytes
一键复制 编辑 原始数据 按行查看 历史
ubuntu16 提交于 2024-03-04 13:41 . 20230304
#ifndef MY_PLC_H
#define MY_PLC_H
#include <string>
#include <vector>
#include <memory>
#include <unistd.h>
#include <iostream>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <sstream>
#include <iostream>
#include <assert.h>
#include <fcntl.h>
#include "Log.h"
#define PLCEXITNUM 1
#define PLCTCPWAITTIME 1e5
using namespace std;
class MyPLC {
private:
int port_;
int serverSocket_, connSocket_;
struct sockaddr_in serverAddr_;
EasyLog plcLog_;
void InitializePLC(int port = 5005);
public:
MyPLC(int port = 5005);
~MyPLC();
void RecvPLCCommand(vector<unsigned char> &plc_command_data);
void SendPLCCommand(const vector<unsigned char> &plc_command_data);
};
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/bishengsjtu/check-point-rect-reconnect.git
git@gitee.com:bishengsjtu/check-point-rect-reconnect.git
bishengsjtu
check-point-rect-reconnect
CheckPointRectReconnect
master

搜索帮助