Update PGM with recent changes

This commit is contained in:
Martin Hurton
2013-03-18 02:05:51 +01:00
parent 9ea20b82cc
commit 81818401e8
3 changed files with 8 additions and 7 deletions

View File

@@ -34,7 +34,7 @@
#include "io_object.hpp"
#include "i_engine.hpp"
#include "options.hpp"
#include "decoder.hpp"
#include "v1_decoder.hpp"
#include "pgm_socket.hpp"
namespace zmq
@@ -85,7 +85,7 @@ namespace zmq
struct peer_info_t
{
bool joined;
decoder_t *decoder;
v1_decoder_t *decoder;
};
struct tsi_comp
@@ -113,7 +113,7 @@ namespace zmq
zmq::session_base_t *session;
// Most recently used decoder.
decoder_t *mru_decoder;
v1_decoder_t *mru_decoder;
// Number of bytes not consumed by the decoder due to pipe overflow.
size_t pending_bytes;