tobtoht
cb54a0a419
ci: common: remove duplicated definition
2024-12-23 18:31:52 +01:00
luigi1111
afbc9ef97a
Merge pull request #9475
...
ea8e29f
set USE_UNWIND for FreeBSD (Alexander Perechnev)
2024-12-23 10:37:37 -05:00
luigi1111
44fef7903c
Merge pull request #9336
...
04fe6fa
split variant into plain and optional, add variant serialization (koe)
2024-12-23 10:26:23 -05:00
luigi1111
1f7290f329
Merge pull request #9176
...
49ca1ad
variant: split into variant and optional_variant (jeffro256)
2024-12-23 10:19:55 -05:00
luigi1111
575bc099a0
Merge pull request #9172
...
62fdacc
variant: visit lambda and value-initialize by index (jeffro256)
2024-12-23 10:19:05 -05:00
Alexander Perechnev
ea8e29fa96
set USE_UNWIND for FreeBSD
2024-09-08 12:34:13 +03:00
jeffro256
b2c59c498c
common: add va_args.h
...
This PR is upstreaming changes in the Seraphis lib here: https://github.com/UkoeHB/monero/pull/39 . This header adds a macro `VA_ARGS_COMMAPREFIX`
which, when passed `__VA_ARGS__`, expands to `, __VA_ARGS__` unless the length of `__VA_ARGS__` is 0, in which case it expands to nothing. This
macro is useful for passing/declaring optional function arguments.
2024-08-13 12:02:45 -05:00
koe
04fe6fa63f
split variant into plain and optional, add variant serialization
2024-08-02 13:18:57 -05:00
copyCat
341771ac3e
copyright: bump to 2024
2024-05-21 16:29:33 +00:00
luigi1111
6c346eca03
Merge pull request #9305
...
de9c461
common: support boost filesystem copy_options. Co-authored-by: selsta <selsta@sent.at> (0xFFFC0000)
2024-05-20 23:38:20 -05:00
luigi1111
b208eed32a
Merge pull request #9270
...
267e31f
Add drop_and_recreate in privatefile class. When creating a private file we need to delete the file if exist. (0xFFFC0000)
2024-05-20 23:35:48 -05:00
luigi1111
d95414aa22
Merge pull request #8920
...
236e5d4
update TimingsDatabase to support csv format and incremental updating (koe)
2024-05-20 22:47:33 -05:00
de9c461a98
common: support boost filesystem copy_options.
...
Co-authored-by: selsta <selsta@sent.at>
2024-04-30 23:20:10 +00:00
267e31f5b7
Add drop_and_recreate in privatefile class.
...
When creating a private file we need to delete the file if exist.
2024-04-22 14:32:12 +00:00
jeffro256
49ca1ad6ae
variant: split into variant and optional_variant
...
Upstreaming https://github.com/UkoeHB/monero/pull/28
2024-02-16 19:12:13 -06:00
jeffro256
62fdacca07
variant: visit lambda and value-initialize by index
2024-02-14 02:01:44 -06:00
430b102aef
Cleanup scoped_ptr in src/common/dns_utils.cpp and header include:
...
* No need for entire new class (Fix #8732 ).
* Fix stdint.h header include in contrib/epee/include/net/http_base.h.
2023-12-19 16:54:37 +03:30
koe
236e5d4623
update TimingsDatabase to support csv format and incremental updating
2023-09-10 15:51:54 -05:00
luigi1111
00fd416a99
Merge pull request #8919
...
1c20198
Fixup error message. (ComputeryPony)
2023-07-06 21:41:12 -05:00
luigi1111
cfa4583695
Merge pull request #8894
...
c589e15
Speed up perf_timer init on x86 (SChernykh)
2023-07-06 21:32:11 -05:00
tobtoht
d9c7cd5a89
common: do not use DNS to determine if address is local
...
Co-authored-by: j-berman <justinberman@protonmail.com>
2023-07-03 13:34:39 +02:00
ComputeryPony
1c20198280
Fixup error message.
...
Looks like the extra MWARNING was supposed to be guarded by the if statement.
2023-06-27 12:56:35 -05:00
luigi1111
1153246b8a
Merge pull request #8848
...
6b8dfb8
daemon: remove os-version (tobtoht)
2023-06-27 11:39:33 -05:00
luigi1111
3d9f378ed4
Merge pull request #8804
...
ca6c42a
Message about DNS_PUBLIC to help users with issue #8452 (OrvilleRed)
2023-06-27 11:33:45 -05:00
luigi1111
9480525dd2
Merge pull request #8661
...
f50b9e3
revisions (koe) e5aa058
vtnerd review comments (koe)
c60b11f
add compare_func() method so user-defined comparison functions are easier to use (koe)
7329873
adjust is_sorted_and_unique() (koe)
3d60475
comment updates (koe) acfaaed
add container helpers (koe)
2023-06-27 11:27:03 -05:00
luigi1111
e752b609fc
Merge pull request #8660
...
2a7435e
variant: add mutable unwrap and visitation (koe)
bc3cec4
add variant class with cleaner interface than boost::variant<> (koe)
2023-06-27 11:25:52 -05:00
SChernykh
c589e1549b
Speed up perf_timer init on x86
...
All Monero binaries have 1 second startup delay because of this code. This is especially noticeable and affects UX in Monero GUI wallet with local node where it often starts another monerod instance to run commands and query node status.
2023-06-08 07:56:05 +02:00
tobtoht
6b8dfb8fb9
daemon: remove os-version
2023-05-10 23:15:03 +02:00
tobtoht
c32befe4f8
fix missing <cstdint> includes
2023-05-06 18:13:18 +02:00
luigi1111
9bf06ea75d
Merge pull request #8698
...
5b4fea7
Copyright: Update to 2023 (mj-xmr)
2023-04-25 11:12:56 -04:00
luigi1111
af88341272
Merge pull request #8694
...
d89e7a2
util: make GMT timestamps explicit for clarity (moneromooo-monero)
2023-04-25 11:11:08 -04:00
OrvilleRed
ca6c42a8e1
Message about DNS_PUBLIC to help users with issue #8452
2023-03-27 00:36:40 -04:00
koe
2a7435e026
variant: add mutable unwrap and visitation
2023-02-12 13:00:53 -06:00
koe
bc3cec4634
add variant class with cleaner interface than boost::variant<>
2023-01-30 22:03:35 -06:00
mj-xmr
5b4fea72cf
Copyright: Update to 2023
...
Co-authored-by: plowsof <plowsof@protonmail.com>
extra files
2023-01-16 13:00:18 +01:00
luigi1111
50aa0e8b7f
Merge pull request #8675
...
1a568de
Cache successful erRctNonSemanticsSimple calls (SChernykh)
2023-01-11 12:27:40 -05:00
luigi1111
75d80d431a
Merge pull request #8686
...
7a3a593
common: move boost_serialization_helper.h out and cleanup includes (Jeffrey Ryan)
2023-01-11 12:13:48 -05:00
luigi1111
ac87d8dac9
Merge pull request #8682
...
96677ff
common: add missing includes (selsta)
2023-01-11 12:12:57 -05:00
moneromooo-monero
d89e7a239d
util: make GMT timestamps explicit for clarity
...
For privacy reasons, time functions use GMT, to avoid logs leaking
timezones. It'd make more sense to use localtime for wallet output
(which are not logged by default), but that adds inconsistencies
which can also be confusing. So add a Z suffix for now to make it
clear these are not local time.
2023-01-01 10:38:13 +00:00
koe
f50b9e3803
revisions
2022-12-29 17:39:34 -06:00
koe
e5aa058a8d
vtnerd review comments
2022-12-24 19:15:27 -06:00
Jeffrey Ryan
7a3a593a77
common: move boost_serialization_helper.h out and cleanup includes
2022-12-22 12:18:02 -06:00
SChernykh
1a568deacb
Cache successful verRctNonSemanticsSimple
calls
2022-12-20 22:16:39 +01:00
koe
c60b11f3da
add compare_func() method so user-defined comparison functions are easier to use
2022-12-19 15:50:16 -06:00
selsta
96677fffcd
common: add missing includes
2022-12-18 18:30:08 +01:00
koe
73298734d6
adjust is_sorted_and_unique()
2022-12-18 10:18:46 -06:00
koe
3d60475753
comment updates
2022-12-15 13:04:34 -06:00
koe
acfaaeda7a
add container helpers
2022-12-01 17:25:26 -06:00
Jeffrey Ryan
8687da6276
common: DNSResolver can handle hostnames without dot characters
...
Unrelated, but similar code-wise to #8643 . There is a check in `DNSResolver` which automatically fails to resolve hostnames which do not contain the `.` character. This PR removes that check.
2022-11-21 15:54:23 -06:00
SChernykh
28f25c0dbc
Second thread pool for IO
2022-09-20 09:59:58 +02:00