$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] how can I use ipv6 on boost::asio
From: Vinnie Falco (vinnie.falco_at_[hidden])
Date: 2017-03-11 11:12:51
On Sat, Mar 11, 2017 at 3:18 AM, Kazuaki Okimoto via Boost
<boost_at_[hidden]> wrote:
> _socket->open(boost::asio::ip::tcp::v4());
>
> But , it can't use IPV6 network. I'd like to use my app on IPV6 network.
Hmm...maybe this will help you make forward progress:
_socket->open(boost::asio::ip::tcp::v6()); // 'v6'
Thanks