hmbdc
simplify-high-performance-messaging-programming
BackupRecvSession.hpp
1 #include "hmbdc/Copyright.hpp"
2 #pragma once
3 #include "hmbdc/tips/rmcast/Messages.hpp"
4 #include "hmbdc/tips/reliable/BackupRecvSessionT.hpp"
5 
6 #include <netinet/in.h>
7 namespace hmbdc { namespace tips { namespace rmcast {
8 template <typename OutputBuffer, typename AttachmentAllocator>
9 using BackupRecvSession =
10  hmbdc::tips::reliable::BackupRecvSessionT<TransportMessageHeader
11  , SessionStarted
12  , SessionDropped
13  , SeqAlert
14  , OutputBuffer
15  , sockaddr_in
16  , AttachmentAllocator>;
17 }}}
Definition: Base.hpp:12