Boost Asio总结(12)class basic_socket_acceptor

2024-03-28 08:18

本文主要是介绍Boost Asio总结(12)class basic_socket_acceptor,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1. 对应socket api的accept()函数,用于服务端在指定的端口接收连接。

eg.

   boost::asio::ip::tcp::acceptor acceptor(my_context);boost::asio::ip::tcp::endpoint endpoint(boost::asio::ip::tcp::v4(), 12345);acceptor.open(endpoint.protocol());acceptor.bind(endpoint);

1.1

template <typename Protocol, typename Executor>
class basic_socket_acceptor: public socket_base
{void listen(int backlog = socket_base::max_listen_connections){boost::system::error_code ec;impl_.get_service().listen(impl_.get_implementation(), backlog, ec);boost::asio::detail::throw_error(ec, "listen");}BOOST_ASIO_SYNC_OP_VOID close(boost::system::error_code& ec){impl_.get_service().close(impl_.get_implementation(), ec);BOOST_ASIO_SYNC_OP_VOID_RETURN(ec);}BOOST_ASIO_SYNC_OP_VOID cancel(boost::system::error_code& ec){impl_.get_service().cancel(impl_.get_implementation(), ec);BOOST_ASIO_SYNC_OP_VOID_RETURN(ec);}/// Set an option on the acceptor. template <typename SettableSocketOption>void set_option(const SettableSocketOption& option){boost::system::error_code ec;impl_.get_service().set_option(impl_.get_implementation(), option, ec);boost::asio::detail::throw_error(ec, "set_option");}void wait(wait_type w){boost::system::error_code ec;impl_.get_service().wait(impl_.get_implementation(), w, ec);boost::asio::detail::throw_error(ec, "wait");}template <typename WaitHandler>BOOST_ASIO_INITFN_RESULT_TYPE(WaitHandler,void (boost::system::error_code))async_wait(wait_type w, BOOST_ASIO_MOVE_ARG(WaitHandler) handler){return async_initiate<WaitHandler, void (boost::system::error_code)>(initiate_async_wait(), handler, this, w);}template <typename Protocol1, typename Executor1>void accept(basic_socket<Protocol1, Executor1>& peer,typename enable_if<is_convertible<Protocol, Protocol1>::value>::type* = 0){boost::system::error_code ec;impl_.get_service().accept(impl_.get_implementation(),peer, static_cast<endpoint_type*>(0), ec);boost::asio::detail::throw_error(ec, "accept");}

这篇关于Boost Asio总结(12)class basic_socket_acceptor的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

Android数据库Room的实际使用过程总结

《Android数据库Room的实际使用过程总结》这篇文章主要给大家介绍了关于Android数据库Room的实际使用过程,详细介绍了如何创建实体类、数据访问对象(DAO)和数据库抽象类,需要的朋友可以... 目录前言一、Room的基本使用1.项目配置2.创建实体类(Entity)3.创建数据访问对象(DAO

Java向kettle8.0传递参数的方式总结

《Java向kettle8.0传递参数的方式总结》介绍了如何在Kettle中传递参数到转换和作业中,包括设置全局properties、使用TransMeta和JobMeta的parameterValu... 目录1.传递参数到转换中2.传递参数到作业中总结1.传递参数到转换中1.1. 通过设置Trans的

C# Task Cancellation使用总结

《C#TaskCancellation使用总结》本文主要介绍了在使用CancellationTokenSource取消任务时的行为,以及如何使用Task的ContinueWith方法来处理任务的延... 目录C# Task Cancellation总结1、调用cancellationTokenSource.

提示:Decompiled.class file,bytecode version如何解决

《提示:Decompiled.classfile,bytecodeversion如何解决》在处理Decompiled.classfile和bytecodeversion问题时,通过修改Maven配... 目录问题原因总结问题1、提示:Decompiled .class file,China编程 bytecode

HarmonyOS学习(七)——UI(五)常用布局总结

自适应布局 1.1、线性布局(LinearLayout) 通过线性容器Row和Column实现线性布局。Column容器内的子组件按照垂直方向排列,Row组件中的子组件按照水平方向排列。 属性说明space通过space参数设置主轴上子组件的间距,达到各子组件在排列上的等间距效果alignItems设置子组件在交叉轴上的对齐方式,且在各类尺寸屏幕上表现一致,其中交叉轴为垂直时,取值为Vert

学习hash总结

2014/1/29/   最近刚开始学hash,名字很陌生,但是hash的思想却很熟悉,以前早就做过此类的题,但是不知道这就是hash思想而已,说白了hash就是一个映射,往往灵活利用数组的下标来实现算法,hash的作用:1、判重;2、统计次数;

git使用的说明总结

Git使用说明 下载安装(下载地址) macOS: Git - Downloading macOS Windows: Git - Downloading Windows Linux/Unix: Git (git-scm.com) 创建新仓库 本地创建新仓库:创建新文件夹,进入文件夹目录,执行指令 git init ,用以创建新的git 克隆仓库 执行指令用以创建一个本地仓库的

ASIO网络调试助手之一:简介

多年前,写过几篇《Boost.Asio C++网络编程》的学习文章,一直没机会实践。最近项目中用到了Asio,于是抽空写了个网络调试助手。 开发环境: Win10 Qt5.12.6 + Asio(standalone) + spdlog 支持协议: UDP + TCP Client + TCP Server 独立的Asio(http://www.think-async.com)只包含了头文件,不依

二分最大匹配总结

HDU 2444  黑白染色 ,二分图判定 const int maxn = 208 ;vector<int> g[maxn] ;int n ;bool vis[maxn] ;int match[maxn] ;;int color[maxn] ;int setcolor(int u , int c){color[u] = c ;for(vector<int>::iter

整数Hash散列总结

方法:    step1  :线性探测  step2 散列   当 h(k)位置已经存储有元素的时候,依次探查(h(k)+i) mod S, i=1,2,3…,直到找到空的存储单元为止。其中,S为 数组长度。 HDU 1496   a*x1^2+b*x2^2+c*x3^2+d*x4^2=0 。 x在 [-100,100] 解的个数  const int MaxN = 3000