mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-19 04:57:53 +00:00
.
This commit is contained in:
parent
6015b529a0
commit
1f9414a30f
@ -139,24 +139,6 @@ extern "C" {
|
|||||||
*/
|
*/
|
||||||
#define ZT_MAX_CAPABILITY_CUSTODY_CHAIN_LENGTH 7
|
#define ZT_MAX_CAPABILITY_CUSTODY_CHAIN_LENGTH 7
|
||||||
|
|
||||||
/**
|
|
||||||
* Maximum number of hops in a ZeroTier circuit test
|
|
||||||
*
|
|
||||||
* This is more or less the max that can be fit in a given packet (with
|
|
||||||
* fragmentation) and only one address per hop.
|
|
||||||
*/
|
|
||||||
#define ZT_CIRCUIT_TEST_MAX_HOPS 256
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Maximum number of addresses per hop in a circuit test
|
|
||||||
*/
|
|
||||||
#define ZT_CIRCUIT_TEST_MAX_HOP_BREADTH 8
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Circuit test report flag: upstream peer authorized in path (e.g. by network COM)
|
|
||||||
*/
|
|
||||||
#define ZT_CIRCUIT_TEST_REPORT_FLAGS_UPSTREAM_AUTHORIZED_IN_PATH 0x0000000000000001ULL
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Maximum value for link quality (min is 0)
|
* Maximum value for link quality (min is 0)
|
||||||
*/
|
*/
|
||||||
|
@ -287,7 +287,7 @@ int64_t OSUtils::getFileSize(const char *path)
|
|||||||
|
|
||||||
bool OSUtils::readFile(const char *path,std::string &buf)
|
bool OSUtils::readFile(const char *path,std::string &buf)
|
||||||
{
|
{
|
||||||
char tmp[1024];
|
char tmp[16384];
|
||||||
FILE *f = fopen(path,"rb");
|
FILE *f = fopen(path,"rb");
|
||||||
if (f) {
|
if (f) {
|
||||||
for(;;) {
|
for(;;) {
|
||||||
|
Loading…
Reference in New Issue
Block a user