aboutsummaryrefslogtreecommitdiff
path: root/contrib/epee/include
Commit message (Collapse)AuthorAgeFilesLines
...
| * | epee: Remove unused functions in local_ip.hJean Pierre Dudey2020-07-221-26/+0
| |/ | | | | | | Signed-off-by: Jean Pierre Dudey <me@jeandudey.tech>
* | Merge pull request #6718Alexander Blair2020-08-162-2/+12
|\ \ | | | | | | | | | 85efc88c1 Fix overflow issue in epee:misc_utils::rolling_median_t and median(), with unit test (koe)
| * | Fix overflow issue in epee:misc_utils::rolling_median_t and median(), with ↵koe2020-07-232-2/+12
| |/ | | | | | | unit test
* | Merge pull request #6716Alexander Blair2020-08-162-8/+1
|\ \ | | | | | | | | | 76c16822d wallet2_api: implement runtime proxy configuration (xiphon)
| * | wallet2_api: implement runtime proxy configurationxiphon2020-07-202-8/+1
| |/
* / Wallet, daemon: From 'help_advanced' back to 'help', and new 'apropos' commandrbrunner72020-07-241-0/+25
|/
* Merge pull request #6516Alexander Blair2020-07-192-7/+0
|\ | | | | | | 8656a8c9f remove double includes (sumogr)
| * remove double includessumogr2020-05-112-7/+0
| |
* | Merge pull request #6512Alexander Blair2020-07-1911-11/+11
|\ \ | | | | | | | | | 5ef0607da Update copyright year to 2020 (SomaticFanatic)
| * | Update copyright year to 2020SomaticFanatic2020-05-0611-11/+11
| | | | | | | | | | | | Update copyright year to 2020
* | | epee: fix array underflow in unicode parsingmoneromooo-monero2020-06-211-1/+1
| | | | | | | | | | | | | | | | | | Reported by minerscan Also independently found by OSS-Fuzz just recently
* | | Merge pull request #6539luigi11112020-06-081-6/+6
|\ \ \ | | | | | | | | | | | | 85164a8 epee: use memwipe rather than memset for md5 secrets (moneromooo-monero)
| * | | epee: use memwipe rather than memset for md5 secretsmoneromooo-monero2020-05-161-6/+6
| |/ / | | | | | | | | | That's used by HTTP auth now
* | | Fix boost <1.60 compilation and fix boost 1.73+ warningsLee Clagett2020-05-314-17/+17
| | |
* | | build: fix boost 1.73 compatibilityselsta2020-05-142-6/+6
|/ /
* | Add byte_stream for zero-copy serialization, and add support in ZMQ-JSON.Lee Clagett2020-04-112-1/+249
| |
* | Merge pull request #6446luigi11112020-05-012-0/+11
|\ \ | | | | | | | | | e509ede trezor: adapt to new passphrase mechanism (ph4r05)
| * | trezor: adapt to new passphrase mechanismDusan Klinec2020-04-272-0/+11
| |/ | | | | | | | | | | | | | | | | - choice where to enter passphrase is now made on the host - use wipeable string in the comm stack - wipe passphrase memory - protocol optimizations, prepare for new firmware version - minor fixes and improvements - tests fixes, HF12 support
* | Use byte_slice for sending zmq messages - removes data copy within zmqLee Clagett2020-04-031-1/+9
| |
* | Allow wallet2.h to run in WebAssemblywoodser2020-04-154-158/+117
|/ | | | | | | - Add abstract_http_client.h which http_client.h extends. - Replace simple_http_client with abstract_http_client in wallet2, message_store, message_transporter, and node_rpc_proxy. - Import and export wallet data in wallet2. - Use #if defined __EMSCRIPTEN__ directives to skip incompatible code.
* Merge pull request #6351luigi11112020-04-043-38/+24
|\ | | | | | | | | | | 81c5943 Remove temporary std::string creation in some hex->bin calls (vtnerd) 5fcc23a Move hex->bin conversion to monero copyright files and with less includes (vtnerd) 3387f0e Reduce template bloat in hex->bin for ZMQ json (vtnerd)
| * Move hex->bin conversion to monero copyright files and with less includesLee Clagett2020-03-093-34/+19
| |
| * Remove temporary std::string creation in some hex->bin callsLee Clagett2020-03-091-5/+6
| |
* | Merge pull request #6339luigi11112020-04-042-2/+2
|\ \ | | | | | | | | | c61abf8 remove empty statements (shopglobal)
| * | remove empty statementsInterchained2020-02-172-2/+2
| | | | | | | | | | | | Cleaning up a little around the code base.
* | | p2p: fix frequent weak_ptr exception on connectionmoneromooo-monero2020-03-311-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a handshake fails, it can fail due to timeout or destroyed connection, in which case the connection will be, or already is, closed, and we don't want to do it twice. Additionally, when closing a connection directly from the top level code, ensure the connection is gone from the m_connects list so it won't be used again. AFAICT this is now clean in netstat, /proc/PID/fd and print_cn. This fixes a noisy (but harmless) exception.
* | | Merge pull request #6336luigi11112020-03-311-3/+7
|\ \ \ | | | | | | | | | | | | | | | | | | | | 760ecf2 console_handler: do not let exception past the dor (moneromooo-monero) 09c8111 threadpool: lock mutex in create (moneromooo-monero) e377977 tx_pool: catch theoretical error in get_block_reward (moneromooo-monero)
| * | | console_handler: do not let exception past the dormoneromooo-monero2020-02-121-3/+7
| |/ / | | | | | | | | | Coverity 208373
* | | Merge pull request #6311luigi11112020-03-311-0/+7
|\ \ \ | |_|/ |/| | | | | 5002a03 Explicitly define copy assignment operator (omartijn)
| * | Explicitly define copy assignment operatorMartijn Otto2020-01-281-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The implicit copy assignment operator was deprecated because the class has an explicit copy constructor. According to the standard: The generation of the implicitly-defined copy assignment operator is deprecated (since C++11) if T has a user-declared destructor or user-declared copy constructor. Recent versions of gcc (9.1+) and clang (10.0) warn about this.
* | | Merge pull request #6273Alexander Blair2020-03-121-1/+11
|\ \ \ | | | | | | | | | | | | 0f78b06e Various improvements to the ZMQ JSON-RPC handling: (Lee Clagett)
| * | | Various improvements to the ZMQ JSON-RPC handling:Lee Clagett2020-03-051-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Finding handling function in ZMQ JSON-RPC now uses binary search - Temporary `std::vector`s in JSON output now use `epee::span` to prevent allocations. - Binary -> hex in JSON output no longer allocates temporary buffer - C++ structs -> JSON skips intermediate DOM creation, and instead write directly to an output stream.
* | | | Merge pull request #6244Alexander Blair2020-03-121-5/+16
|\ \ \ \ | | | | | | | | | | | | | | | 352bd132 abstract_tcp_server2: guard against negative timeouts (moneromooo-monero)
| * | | | abstract_tcp_server2: guard against negative timeoutsmoneromooo-monero2019-12-161-5/+16
| |/ / /
* | | | Merge pull request #6243Alexander Blair2020-03-122-6/+4
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4771a7ae p2p: remove obsolete local time in handshake (moneromooo-monero) 2fbbc4a2 p2p: avoid sending the same peer list over and over (moneromooo-monero) 3004835b epee: remove backward compatible endian specific address serialization (moneromooo-monero) 39a343d7 p2p: remove backward compatible peer list (moneromooo-monero) 60631802 p2p: simplify last_seen serialization now we have optional stores (moneromooo-monero) 9467b2e4 cryptonote_protocol: omit top 64 bits of difficulty when 0 (moneromooo-monero) b595583f serialization: do not write optional fields with default value (moneromooo-monero) 5f98b46d p2p: remove obsolete local time from TIMED_SYNC (moneromooo-monero)
| * | | | epee: remove backward compatible endian specific address serializationmoneromooo-monero2020-01-261-6/+2
| | | | |
| * | | | serialization: do not write optional fields with default valuemoneromooo-monero2020-01-261-0/+2
| | | | |
* | | | | Merge pull request #6220Alexander Blair2020-02-286-56/+53
|\ \ \ \ \ | |_|_|_|/ |/| | | | | | | | | a9bdc6e4 Improved performance for epee serialization: (Lee Clagett)
| * | | | Improved performance for epee serialization:Lee Clagett2019-11-046-56/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Removed copy of field names in binary deserialization - Removed copy of array values in binary deserialization - Removed copy of string values in json deserialization - Removed unhelpful allocation in json string value parsing - Removed copy of blob data on binary and json serialization
* | | | | Merge pull request #6182Alexander Blair2020-02-061-1/+1
|\ \ \ \ \ | |_|_|_|/ |/| | | | | | | | | e896cca8 epee: reorder a couple init list fields to match declaration (moneromooo-monero)
| * | | | epee: reorder a couple init list fields to match declarationmoneromooo-monero2019-11-251-1/+1
| | | | | | | | | | | | | | | | | | | | This is a bug waiting to happen
* | | | | network: log traffic and add a simple traffic analysis scriptmoneromooo-monero2020-01-261-5/+43
| |_|/ / |/| | |
* | | | Merge pull request #6143Alexander Blair2020-01-161-0/+2
|\ \ \ \ | | | | | | | | | | | | | | | 6efeefbc epee: set application/json MIME type on json errors (moneromooo-monero)
| * | | | epee: set application/json MIME type on json errorsmoneromooo-monero2019-11-151-0/+2
| |/ / /
* | | | Merge pull request #6133Alexander Blair2020-01-161-1/+1
|\ \ \ \ | | | | | | | | | | | | | | | b2ad757f Replace memset with memwipe. (Bert Peters)
| * | | | Replace memset with memwipe.Bert Peters2019-11-131-1/+1
| |/ / /
* | | | Merge pull request #6125Alexander Blair2020-01-161-1/+8
|\ \ \ \ | | | | | | | | | | | | | | | 584d057f epee: fix console_handlers_binder race, wait for thread to finish (xiphon)
| * | | | epee: fix console_handlers_binder race, wait for thread to finishxiphon2019-11-121-1/+8
| |/ / /
* | | | Merge pull request #6120Alexander Blair2020-01-161-1/+3
|\ \ \ \ | |_|_|/ |/| | | | | | | feef1c6a epee: fix peer ids being truncated on display (moneromooo-monero)
| * | | epee: fix peer ids being truncated on displaymoneromooo-monero2019-11-141-1/+3
| |/ /