Subject: Re: [Boost-users] boost::asio multiprocess
From: Igor R (boost.lists_at_[hidden])
Date: 2011-03-02 06:50:11


> int listensd=socket(....);
>
> I have to do something like this?:
> boost::asio::ip::tcp::socket s;
> int listen sd=s.native_type();

Sorry, I was mistaken, it's called native().
tpc::socket::native_type sd = s.native();

Certainly, native_type here is a typedef of some integral type.