summaryrefslogtreecommitdiff
path: root/src/pgm_socket.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@fastmq.commkdir>2009-12-13 09:11:08 +0100
committerMartin Sustrik <sustrik@fastmq.commkdir>2009-12-13 09:11:08 +0100
commit73b765e4b497f6a505cbf88c524085fa0e58e59c (patch)
treee5168937f98cbb2d85ad3cc93e842ef29d14b276 /src/pgm_socket.hpp
parentd5670f34baa0751a5b4567a28caea4e4fa208727 (diff)
PGM transport fixed
Diffstat (limited to 'src/pgm_socket.hpp')
-rw-r--r--src/pgm_socket.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/pgm_socket.hpp b/src/pgm_socket.hpp
index 71fa9c6..6c67306 100644
--- a/src/pgm_socket.hpp
+++ b/src/pgm_socket.hpp
@@ -62,7 +62,8 @@ namespace zmq
// Get sender and receiver fds and store it to user allocated
// memory. Receive fd is used to process NAKs from peers.
- int get_sender_fds (int *send_fd_, int *receive_fd_, int *rdata_notify_fd_ = NULL);
+ int get_sender_fds (int *send_fd_, int *receive_fd_,
+ int *rdata_notify_fd_ = NULL);
// Send data as one APDU, transmit window owned memory.
size_t send (unsigned char *data_, size_t data_len_);
@@ -83,7 +84,7 @@ namespace zmq
protected:
// OpenPGM transport
- pgm_transport_t* g_transport;
+ pgm_transport_t* transport;
private: