aboutsummaryrefslogtreecommitdiff
path: root/contrib/epee
Commit message (Collapse)AuthorAgeFilesLines
...
* Merge pull request #9396luigi11112024-07-161-2/+3
|\ | | | | | | b9fddc0 epee: fix mlog filename compare bug. (0xFFFC0000)
| * epee: fix mlog filename compare bug.0xFFFC00002024-07-141-2/+3
| | | | | | | | | | | | | | When using a relative path for the log filename, since the iteration on files adds "./" to the beginning of the filename monero-wallet-rpc and monero-wallet-cli cannot find already written log files and therefore rotate indefinitely.
* | contrib: fix compilation error for boost 1.850xFFFC00002024-05-291-0/+1
|/
* Cleanup string_tools.0xFFFC00002024-03-153-63/+40
| | | | | 1. Use boost::filesystem for already available operations. 2. Use boost::string for already available operations.
* Revert "http_client: reduce number of packets sent for small bodies"jeffro2562024-03-101-26/+16
| | | | This reverts commit e0b2123c324ae80177fd7c6b0516a9f8840803d9.
* Merge pull request #9047luigi11112023-11-061-0/+13
|\ | | | | | | 6c38c21 heed NO_COLOR environment variable (moneromooo-monero)
| * heed NO_COLOR environment variablemoneromooo-monero2023-10-311-0/+13
| |
* | readline_buffer: disable bracketed paste escape sequencesJeffrey Ryan2023-10-311-0/+4
|/
* http_client: reduce number of packets sent for small bodiesjeffro2562023-10-151-16/+26
|
* storages: change error log category to serializationselsta2023-09-222-0/+6
|
* wallet-rpc: restore from multisig seedjeffro2562023-08-101-0/+10
|
* Merge pull request #8909luigi11112023-07-061-5/+8
|\ | | | | | | aed36a2 Set SSL SNI even when server verification is disabled (Lee *!* Clagett)
| * Set SSL SNI even when server verification is disabledLee *!* Clagett2023-06-161-5/+8
| |
* | Merge pull request #8900luigi11112023-07-061-4/+1
|\ \ | |/ |/| | | 438554e properly terminate interrupted TCP connection. fixes #8685 (j-berman)
| * properly terminate interrupted TCP connection. fixes #8685j-berman2023-06-091-4/+1
| |
* | fix missing <cstdint> includestobtoht2023-05-082-0/+2
|/
* epee: dont shrink slice when storing to binary [release]Jeffrey Ryan2022-09-201-1/+1
|
* Windows: fix unicode file path supporttobtoht2022-09-021-4/+4
|
* Merge pull request #8435v0.18.0.0luigi11112022-07-151-0/+10
|\ | | | | | | cf3be99 Template hash func to fix compiler error on < gcc-6 (j-berman)
| * Template hash func to fix compiler error on < gcc-6j-berman2022-07-131-0/+10
| |
* | address PR commentsj-berman2022-07-083-390/+385
| |
* | connection: fix implementationanon2022-07-054-834/+1227
|/
* Merge pull request #8337luigi11112022-05-261-1/+0
|\ | | | | | | 1164874 src, epee: fix a couple compiler warnings (selsta)
| * src, epee: fix a couple compiler warningsselsta2022-05-171-1/+0
| |
* | Windows build: fix narrowing error for WaitForSingleObjectJeffrey Ryan2022-05-231-1/+1
|/ | | | `WaitForSingleObject` returns a `DWORD`, not an int, so assign `retval` as such and it should fix the error.
* Merge pull request #8315luigi11112022-05-161-1/+24
|\ | | | | | | 1ddb1ee Give better error messages when missing SSL files (Jeffrey Ryan)
| * Give better error messages when missing SSL filesJeffrey Ryan2022-05-051-1/+24
| | | | | | | | | | While copying my data dir to another drive, I missed copying the rpc_ssl.key file b/c of the file permissions. This change will give a much more clear, descriptive error in that scenario.
* | Merge pull request #8301luigi11112022-05-101-1/+1
|\ \ | | | | | | | | | 6ef945d Doxygen: Hide anonymous namespaces from documentation by default (Jeffrey)
| * | Doxygen: Hide anonymous namespaces from documentation by defaultJeffrey2022-04-281-1/+1
| |/ | | | | | | Bonus: little doc fix for net_ssl.h
* | Merge pull request #8279luigi11112022-05-102-237/+1
|\ \ | | | | | | | | | f7d50cb EPEE: Remove gzip_encoding.h (Jeffrey)
| * | EPEE: Remove gzip_encoding.hJeffrey2022-04-222-237/+1
| | |
* | | Merge pull request #8278luigi11112022-05-103-302/+0
|\ \ \ | | | | | | | | | | | | 63c7f8b EPEE: Remove hmac-md5 (Jeffrey)
| * | | EPEE: Remove hmac-md5Jeffrey2022-04-223-302/+0
| |/ /
* | | Merge pull request #8226luigi11112022-05-103-5/+5
|\ \ \ | |_|/ |/| | | | | 002bf9c Fix typo: SERIALIZE_TYPE_DUOBLE (Jeffrey)
| * | Fix typo: SERIALIZE_TYPE_DUOBLEJeffrey2022-03-253-5/+5
| | |
* | | Merge pull request #8275luigi11112022-04-252-0/+12
|\ \ \ | | | | | | | | | | | | 9209880 add a sanity check to RPC input data size (moneromooo-monero)
| * | | add a sanity check to RPC input data sizemoneromooo-monero2022-04-212-0/+12
| | |/ | |/| | | | | | | reported by m31007
* | | Merge pull request #8248luigi11112022-04-253-72/+0
|\ \ \ | |/ / |/| | | | | d1cb9c3 Remove serialization/enableable (Jeffrey)
| * | Remove serialization/enableableJeffrey2022-04-093-72/+0
| | | | | | | | | | | | | | | | | | Currently working on an EPEE [ser/de]ialization library for Rust and at first glance, EPEE seemed to have support for optional wrappers. However, after looking into it, this feature appears to be half-baked and unused. Furthermore, adding support for optional values would be better suited to implement at the storage level, in my opinion. That would make parsing DOMs easier and less error-prone. If anyone is currently using this code, please comment. Thanks! At the time of writing, this PR has no merge conflicts with #8211
* | | Change C-style-casts to static_cast in time_helper.hJeffrey2022-04-181-4/+4
| | | | | | | | | | | | At the request of @mj-xmr: https://github.com/monero-project/monero/pull/8211#discussion_r822868321
* | | Remove the only 4 non-UTF8 characters in codebaseJeffrey2022-04-181-4/+4
| | | | | | | | | | | | | | | Relevant commit in old PR: 1b798a7042070cc8063bd341ebf7025da554b632
* | | Factor out move_it_backward from misc_language.hJeffrey2022-04-181-9/+1
| | | | | | | | | | | | | | | Relevant commit from old PR: 330df2952cb2863a591158b984c0fb7f652887ac
* | | Move copyable_atomic into connection_contextJeffrey2022-04-181-56/+0
| | | | | | | | | | | | | | | Relevant commit from old PR: bd0a5119957d3ef9130a0b82599e1696995ef235
* | | Refactor out to_nonconst_iterator.hJeffrey2022-04-184-55/+1
| | | | | | | | | | | | | | | Relevant commit on old PR: 2499269696192ce30dd125ddee90a80d4326dff9
* | | Refactor out pragma_comp_defsJeffrey2022-04-184-35/+4
| | | | | | | | | | | | | | | | | | | | | Relevant commits on the old cleanup PR: 36933c7f5c7778e2d7fbfea5361c11fb41070467 21e43de0f300ee47b7e597098908601bf591950b 3c678bb1cedfd7b865ac2e7aaf014de4bfb3eb3d
* | | Merge functionality of misc_os_dependent into time_helper.hJeffrey2022-04-188-279/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Actions: 1. Remove unused functions from misc_os_dependent.h 2. Move three remaining functions, get_gmt_time, get_ns_count, and get_tick_count into time_helper.h 3. Remove unused functions from time_helper.h 4. Refactor get_ns_count and get_internet_time_str and get_time_interval_string 5. Remove/add includes as needed Relevant commits on the old PR: a9fbe52b02ffab451e90c977459fea4642731cd1 9a59b131c4ed1be8afe238fff3780fe203c65a46 7fa9e2817df9b9ef3f0290f7f86357939829e588
* | | Trimming FatJeffrey2022-04-187-149/+0
| | | | | | | | | | | | Remove unused include statements or unused definitions.
* | | Boring Old DeletesJeffrey2022-04-1867-9622/+0
| | | | | | | | | | | | | | | | | | Here lies dozens of unused files. This commit is ONLY file deletions except for the removing of a couple of #includes and removing filenames from CmakeLists where appropriate.
* | | epee: allow copying a rolling_median_t objectmoneromooo-monero2022-04-101-1/+14
|/ /
* | Merge pull request #8228luigi11112022-04-062-77/+1
|\ \ | | | | | | | | | 1ce9e9c Remove dead code from parserse_base_utils and fix unit tests (Jeffrey)