aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/zmq_server.cpp (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2022-03-04Copyright: Update to 2022mj-xmr1-1/+1
2020-08-14Switch to insitu parsing for ZMQ-JSON; GetBlocksFast reads 13%+ fasterLee Clagett1-2/+2
2020-05-06Update copyright year to 2020SomaticFanatic1-1/+1
Update copyright year to 2020
2020-05-04Adding ZMQ/Pub support for txpool_add and chain_main eventsLee Clagett1-45/+126
2020-04-11Add byte_stream for zero-copy serialization, and add support in ZMQ-JSON.Lee Clagett1-1/+0
2020-04-03Use byte_slice for sending zmq messages - removes data copy within zmqLee Clagett1-3/+7
2019-07-22Dropping cppzmq dependency; adding some zmq utilsLee Clagett1-57/+79
2019-07-01zmq: MacPorts latest fixJethro Grassie1-1/+1
2019-03-05Update 2019 copyrightbinaryFate1-1/+1
2018-11-15Removed a lot of unnecessary includesMartijn Otto1-1/+0
2018-06-17zmq_server: fix bind call when address and/or port are emptymoneromooo-monero1-0/+4
2018-01-26Readd copyright starting datexmr-eric1-1/+1
2018-01-26Update 2018 copyrightxmr-eric1-1/+1
2017-12-28zmq: use older 3-arg version of setsockoptstoffu1-1/+1
2017-09-05Fix various oversights/bugs in ZMQ RPC server codeThomas Winget1-28/+23
- Add some RPC commands (and touch up a couple others) - some bounds checking - some better pointer management - const correctness and error handling -- Thanks @vtnerd for type help with serialization and CMake changes
2017-09-05json serialization for rpc-relevant monero typesThomas Winget1-0/+146
Structured {de-,}serialization methods for (many new) types which are used for requests or responses in the RPC. New types include RPC requests and responses, and structs which compose types within those. # Conflicts: # src/cryptonote_core/blockchain.cpp