예제 #1
0
파일: ip.hpp 프로젝트: bitshares/fc
 inline void pack( Stream& s, const ip::endpoint& v, uint32_t _max_depth )
 {
    FC_ASSERT( _max_depth > 0 );
    --_max_depth;
    fc::raw::pack( s, v.get_address(), _max_depth );
    fc::raw::pack( s, v.port(), _max_depth );
 }
예제 #2
0
 inline void pack( Stream& s, const ip::endpoint& v )
 {
    fc::raw::pack( s, v.get_address() );
    fc::raw::pack( s, v.port() );
 }