| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
| |
It is down permanently. See: https://xiala.net/
"Ende November 2018 werden alle Dienste von xiala.net abgeschaltet."
|
| | |
|
| |
|
|
|
|
| |
This keeps its builtin command editing away
Thanks iDunk for testing on Windows
|
| | |
|
| |\
| |
| |
| | |
c4f8a8a6 build fix: combinator.h stdexcept missing include (Dusan Klinec)
|
| | | |
|
| |\ \
| | |
| | |
| | | |
a2195b9b crypto: replace rand<T>()%N idiom with unbiased rand_idx(N) (stoffu)
|
| | | | |
|
| |\ \ \
| |_|/
|/| |
| | | |
07b716bf util: name replace_file arguments better (moneromooo-monero)
|
| | | |
| | |
| | |
| | | |
It was confusing unless you read code and the rename(2) man page.
|
| |\ \ \
| |_|/
|/| |
| | | |
849a768f perf_timer: move some debug levels to info for consistency (moneromooo-monero)
|
| | |/ |
|
| |\ \
| | |
| | |
| | | |
c23ea796 New interactive daemon command 'print_net_stats': Global traffic stats (rbrunner7)
|
| | | | |
|
| |\ \ \
| |_|/
|/| |
| | | |
8a97563a Use threadpool instead of new threads for DNS queries (Howard Chu)
|
| | | | |
|
| | |/
|/|
| |
| | |
Coverity 196597
|
| |\ \
| | |
| | |
| | | |
9c4d403a dns_utils: use fallback if the default resolver does not support DNSSEC (moneromooo-monero)
|
| | | | |
|
| |\ \ \
| | | |
| | | |
| | | |
| | | | |
d0e07b3d performance_tests: fix NetBSD build (moneromooo-monero)
7d88d8f2 discontinue use of alloca (moneromooo-monero)
|
| | |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
NetBSD emits:
warning: Warning: reference to the libc supplied alloca(3); this most likely will not work. Please use the compiler provided version of alloca(3), by supplying the appropriate compiler flags (e.g. not -std=c89).
and man 3 alloca says:
Normally, gcc(1) translates calls to alloca() with inlined code. This is not done when either the -ansi, -std=c89, -std=c99, or the
-std=c11 option is given and the header <alloca.h> is not included. Otherwise, (without an -ansi or -std=c* option) the glibc version of
<stdlib.h> includes <alloca.h> and that contains the lines:
#ifdef __GNUC__
#define alloca(size) __builtin_alloca (size)
#endif
It looks like alloca is a bad idea in modern C/C++, so we use
VLAs for C and std::vector for C++.
|
| |\ \ \
| | | |
| | | |
| | | | |
7c09882a dns_utils: remove MoneroPulse/checkpoints mention in TXT record code (moneromooo-monero)
|
| | |/ /
| | |
| | |
| | | |
This code is used for more than just these
|
| |\ \ \
| | | |
| | | |
| | | | |
1f2930ce Update 2019 copyright (binaryFate)
|
| | | |/
| |/| |
|
| |/ / |
|
| |\ \
| | |
| | |
| | | |
4a9257b4 Support docker for gitian builds (TheCharlatan)
|
| | |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Building with docker is arguably easier and more familiar to most people
than either kvm, or lxc.
This commit also relaxes the back compat requirement a bit. 32 bit linux
now uses glibc version 2.0. Also, the docker shell could not handle gcc arguments
containing spaces, so the explicit '-DFELT_TYPE' declaration was dropped.
Lastly, this removes some packages from the osx descriptor.
|
| |\ \
| | |
| | |
| | | |
1eef0565 performance_tests: better stats, and keep track of timing history (moneromooo-monero)
|
| | | | |
|
| |\ \ \
| | | |
| | | |
| | | | |
24569454 epee: add SSL support (moneromooo-monero)
|
| | | |/
| |/|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
RPC connections now have optional tranparent SSL.
An optional private key and certificate file can be passed,
using the --{rpc,daemon}-ssl-private-key and
--{rpc,daemon}-ssl-certificate options. Those have as
argument a path to a PEM format private private key and
certificate, respectively.
If not given, a temporary self signed certificate will be used.
SSL can be enabled or disabled using --{rpc}-ssl, which
accepts autodetect (default), disabled or enabled.
Access can be restricted to particular certificates using the
--rpc-ssl-allowed-certificates, which takes a list of
paths to PEM encoded certificates. This can allow a wallet to
connect to only the daemon they think they're connected to,
by forcing SSL and listing the paths to the known good
certificates.
To generate long term certificates:
openssl genrsa -out /tmp/KEY 4096
openssl req -new -key /tmp/KEY -out /tmp/REQ
openssl x509 -req -days 999999 -sha256 -in /tmp/REQ -signkey /tmp/KEY -out /tmp/CERT
/tmp/KEY is the private key, and /tmp/CERT is the certificate,
both in PEM format. /tmp/REQ can be removed. Adjust the last
command to set expiration date, etc, as needed. It doesn't
make a whole lot of sense for monero anyway, since most servers
will run with one time temporary self signed certificates anyway.
SSL support is transparent, so all communication is done on the
existing ports, with SSL autodetection. This means you can start
using an SSL daemon now, but you should not enforce SSL yet or
nothing will talk to you.
|
| |/ / |
|
| | | |
|
| | |
| |
| |
| | |
These aren't processed as a shell does, so this may surprise users
|
| |/ |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The blockchain prunes seven eighths of prunable tx data.
This saves about two thirds of the blockchain size, while
keeping the node useful as a sync source for an eighth
of the blockchain.
No other data is currently pruned.
There are three ways to prune a blockchain:
- run monerod with --prune-blockchain
- run "prune_blockchain" in the monerod console
- run the monero-blockchain-prune utility
The first two will prune in place. Due to how LMDB works, this
will not reduce the blockchain size on disk. Instead, it will
mark parts of the file as free, so that future data will use
that free space, causing the file to not grow until free space
grows scarce.
The third way will create a second database, a pruned copy of
the original one. Since this is a new file, this one will be
smaller than the original one.
Once the database is pruned, it will stay pruned as it syncs.
That is, there is no need to use --prune-blockchain again, etc.
|
| |
|
|
|
| |
If there are more valid characters, add them in, I did not find
an actual list.
|
| |\
| |
| |
| |
| |
| | |
93c59b29 perf_timer: check allowed categories before logging (moneromooo-monero)
6a507dab perf_timer: add a way to get and reset the current time (moneromooo-monero)
c1581a5b perf_timer: only log to file (moneromooo-monero)
|
| | | |
|
| | | |
|
| | | |
|
| |\ \
| | |
| | |
| | | |
b56b5b5 ignore child process when exec (jtgrassie)
|
| | |/ |
|
| |\ \
| | |
| | |
| | | |
0e2f5cb perf_timer: make all logs Info level (moneromooo-monero)
|
| | |/
| |
| |
| | |
and make them not default at log level 1
|
| |\ \
| | |
| | |
| | |
| | | |
1505dd3 util: set MONERO_DEFAULT_LOG_CATEGORY (moneromooo-monero)
db57374 util: use fcntl instead of flock, for compatibility (moneromooo-monero)
|
| | | |
| | |
| | |
| | | |
in particular with NFS
|
| | | |
| | |
| | |
| | | |
Otherwise it'd end up with whatever was included last
|
| |\ \ \
| | | |
| | | |
| | | | |
5a76933 Add glibc back compat code (TheCharlatan)
|