Ai
1 Star 0 Fork 0

zdevt/cpptest

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
LocalSocket.h 1.32 KB
一键复制 编辑 原始数据 按行查看 历史
zdevt 提交于 2023-08-13 12:48 +08:00 . up
/*
* =====================================================================================
*
* Filename: LocalSocket.h
*
* Description:
*
* Version: 1.0
* Created: 2017年08月26日 11时08分32秒
* Last Modified: 2017年08月26日 11时08分32秒
* Revision: none
* Compiler: gcc
*
* Author: zt (),
* Organization:
*
* =====================================================================================
*/
#ifndef LOCALSOCKET_INC
#define LOCALSOCKET_INC
#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
#include <unistd.h>
#include <stdint.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <string.h>
#include <string>
class LocalSocket
{
public:
LocalSocket ( std::string lsSelf, std::string lsRemote );
virtual ~LocalSocket();
public:
int Send ( const uint8_t* sendbuf, int size );
int Recv ( uint8_t* recvbuf, int size );
private:
int Init();
int DeInit();
private:
int m_sockfd_self;
int m_sockfd_remote;
std::string m_lsSelf;
std::string m_lsRemote;
sockaddr_un m_self_addr;
sockaddr_un m_remote_addr;
int m_selfaddrlen;
int m_remoteaddrlen;
};
#endif /* ----- #ifndef LocalSocket.h ----- */
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zdevt/cpptest.git
git@gitee.com:zdevt/cpptest.git
zdevt
cpptest
cpptest
master

搜索帮助