波奇学Linux:网络接口

2024-03-25 20:12

本文主要是介绍波奇学Linux:网络接口,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

127.0.0.1本地回环ip,用于本地测试,不会进行网络通信

TCP是面向连接的,服务器比较被动

需要服套接字监听 listen状态

 正常通信默认会进行主机序列和网络序列的转换

TcpServer.cc

#pragma once#include<iostream>
#include<string>
#include<cstring>
#include<sys/types.h>
#include<sys/socket.h>
#include<cstdlib>
#include<wait.h>
#include<arpa/inet.h>
#include<netinet/in.h>
#include<unistd.h>
#include<signal.h>const int defaultfd=-1;
const std::string defaultip="0.0.0.0";
const int backlog=5;
class TcpServer;
class ThreadData
{
public:ThreadData(int fd,const std::string &ip,const uint16_t &p,TcpServer* tsvr):sockfd(fd),clientip(ip),clientport(p),tsvr_(tsvr){}
public:int sockfd;std::string clientip;uint16_t clientport;TcpServer* tsvr_;
};
class TcpServer
{
public:TcpServer(const uint16_t &port,const std::string &ip=defaultip):listensockfd_(defaultfd),port_(port),ip_(ip){}void InitServer(){listensockfd_=socket(AF_INET,SOCK_STREAM,0);if(listensockfd_<0){std::cout<<"create socket error"<<std::endl;}std::cout<<"create socket success"<<std::endl;struct sockaddr_in local;memset(&local,0,sizeof(local));local.sin_family=AF_INET;local.sin_port=htons(port_);inet_aton(ip_.c_str(),&(local.sin_addr));if(bind(listensockfd_,(struct sockaddr*)&local,sizeof(local))<0){std::cout<<"bind error"<<std::endl;}// TCP是面向连接的,服务器比较被动if(listen(listensockfd_,backlog)<0){std::cout<<"listen error"<<std::endl;}std::cout<<"listen success"<<std::endl;}static void* Routine(void* args){pthread_detach(pthread_self());ThreadData* td=static_cast<ThreadData*>(args);td->tsvr_->Service(td->sockfd,td->clientip,td->clientport);delete td;return nullptr;}void Start(){for(;;){//1.获取连接struct sockaddr_in client;socklen_t len=sizeof(client);// sock返的fd负责listen状态//accept返回的sockfd负责通信int sockfd=accept(listensockfd_,(struct sockaddr* )&client,&len);if(sockfd<0){std::cout<<"accept error"<<std::endl;}uint16_t clientport=ntohs(client.sin_port);char clientip[32];inet_ntop(AF_INET,&(client.sin_addr),clientip,sizeof(clientip));std::cout<<"get a net link... sockfd : "<< sockfd<<std::endl;sleep(1);// 根据新连接来通信// Service(sockfd, clientip,clientport);// close(sockfd);// 多进程版// pid_t id=fork();// if(id==0)// {//     close(listensockfd_);//     if(fork()>0) exit(0);//     Service(sockfd, clientip,clientport); //孙子进程,system 领养//     close(sockfd);//     exit(0);// }// //father// close(sockfd);// // 关掉子进程  // pid_t rid=waitpid(id,nullptr,0);// (void)rid;// 多线程版本ThreadData*td=new ThreadData(sockfd,clientip,clientport,this);pthread_t tid;pthread_create(&tid,nullptr,Routine,nullptr);}}void Service(int sockfd,const std::string & clientip,const uint16_t &clientport){char buffer[4096];while(true){ssize_t n= read(sockfd,buffer,sizeof(buffer));if(n>0){buffer[n]=0;std::cout<<"client say# "<<buffer<<std::endl;std::string echo_string="tcpserver echo#";echo_string+=buffer;write(sockfd,echo_string.c_str(),echo_string.size());}else if(n==0){break;}else{std::cout<< "read error"<<std::endl;}}}~TcpServer(){}
private:int listensockfd_;uint16_t port_;std::string ip_;
};

TcpClient

#include<iostream>
#include<cstring>
#include<sys/types.h>
#include<sys/socket.h>
#include<cstdlib>
#include<arpa/inet.h>
#include<netinet/in.h>
#include <unistd.h>
void Usage(const std::string& proc)
{std::cout<<"\n\rUsage "<<proc<<" serveip serverport\n"<<std::endl;
}
int main(int argc,char*argv[])
{if(argc!=3){Usage(argv[0]);exit(1);}int sockfd=socket(AF_INET,SOCK_STREAM,0);std::string serverip=argv[1];uint16_t serverport=std::stoi(argv[2]);if(sockfd<0){std::cerr<<"sock error"<<std::endl;}struct sockaddr_in server;memset(&server,0,sizeof(server));server.sin_family=AF_INET;server.sin_port=htons(serverport);// tcp客户端要bind,// 客户端发起connect的时候,进行随机bindinet_pton(AF_INET,serverip.c_str(),&(server.sin_addr));int n=connect(sockfd,(struct sockaddr*)&server,sizeof(server));if(n<0){std::cerr<<"connect error..."<<std::endl;}std::string message;while(true){std::cout<<"Please Enter# ";std::getline(std::cin,message);write(sockfd,message.c_str(),message.size());char inbuffer[4096];int n=read(sockfd,inbuffer,sizeof(inbuffer));if(n>0){inbuffer[n]=0;std::cout<<inbuffer<<std::endl;}}close(sockfd);return 0;
}

这篇关于波奇学Linux:网络接口的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/846130

相关文章

Linux磁盘分区、格式化和挂载方式

《Linux磁盘分区、格式化和挂载方式》本文详细介绍了Linux系统中磁盘分区、格式化和挂载的基本操作步骤和命令,包括MBR和GPT分区表的区别、fdisk和gdisk命令的使用、常见的文件系统格式以... 目录一、磁盘分区表分类二、fdisk命令创建分区1、交互式的命令2、分区主分区3、创建扩展分区,然后

Linux中chmod权限设置方式

《Linux中chmod权限设置方式》本文介绍了Linux系统中文件和目录权限的设置方法,包括chmod、chown和chgrp命令的使用,以及权限模式和符号模式的详细说明,通过这些命令,用户可以灵活... 目录设置基本权限命令:chmod1、权限介绍2、chmod命令常见用法和示例3、文件权限详解4、ch

Linux内核之内核裁剪详解

《Linux内核之内核裁剪详解》Linux内核裁剪是通过移除不必要的功能和模块,调整配置参数来优化内核,以满足特定需求,裁剪的方法包括使用配置选项、模块化设计和优化配置参数,图形裁剪工具如makeme... 目录简介一、 裁剪的原因二、裁剪的方法三、图形裁剪工具四、操作说明五、make menuconfig

Linux使用nohup命令在后台运行脚本

《Linux使用nohup命令在后台运行脚本》在Linux或类Unix系统中,后台运行脚本是一项非常实用的技能,尤其适用于需要长时间运行的任务或服务,本文我们来看看如何使用nohup命令在后台... 目录nohup 命令简介基本用法输出重定向& 符号的作用后台进程的特点注意事项实际应用场景长时间运行的任务服

什么是cron? Linux系统下Cron定时任务使用指南

《什么是cron?Linux系统下Cron定时任务使用指南》在日常的Linux系统管理和维护中,定时执行任务是非常常见的需求,你可能需要每天执行备份任务、清理系统日志或运行特定的脚本,而不想每天... 在管理 linux 服务器的过程中,总有一些任务需要我们定期或重复执行。就比如备份任务,通常会选在服务器资

Linux限制ip访问的解决方案

《Linux限制ip访问的解决方案》为了修复安全扫描中发现的漏洞,我们需要对某些服务设置访问限制,具体来说,就是要确保只有指定的内部IP地址能够访问这些服务,所以本文给大家介绍了Linux限制ip访问... 目录背景:解决方案:使用Firewalld防火墙规则验证方法深度了解防火墙逻辑应用场景与扩展背景:

Linux下MySQL8.0.26安装教程

《Linux下MySQL8.0.26安装教程》文章详细介绍了如何在Linux系统上安装和配置MySQL,包括下载、解压、安装依赖、启动服务、获取默认密码、设置密码、支持远程登录以及创建表,感兴趣的朋友... 目录1.找到官网下载位置1.访问mysql存档2.下载社区版3.百度网盘中2.linux安装配置1.

Linux使用粘滞位 (t-bit)共享文件的方法教程

《Linux使用粘滞位(t-bit)共享文件的方法教程》在Linux系统中,共享文件是日常管理和协作中的常见任务,而粘滞位(StickyBit或t-bit)是实现共享目录安全性的重要工具之一,本文将... 目录文件共享的常见场景基础概念linux 文件权限粘滞位 (Sticky Bit)设置共享目录并配置粘

linux-基础知识3

打包和压缩 zip 安装zip软件包 yum -y install zip unzip 压缩打包命令: zip -q -r -d -u 压缩包文件名 目录和文件名列表 -q:不显示命令执行过程-r:递归处理,打包各级子目录和文件-u:把文件增加/替换到压缩包中-d:从压缩包中删除指定的文件 解压:unzip 压缩包名 打包文件 把压缩包从服务器下载到本地 把压缩包上传到服务器(zip