diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2014-10-28 14:17:39 -0700 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2014-10-28 14:17:39 -0700 |
commit | 3d85a615fb9a50e193eac5320522be409408a3c3 (patch) | |
tree | 5c5fbce351cca376d78cf5f0d439345e8d92d262 /include | |
parent | f873881a0ddf2043758b3e7925c95168600f42da (diff) | |
download | infinitytier-3d85a615fb9a50e193eac5320522be409408a3c3.tar.gz infinitytier-3d85a615fb9a50e193eac5320522be409408a3c3.zip |
NULL dereference on still-initializing node bug fix in status query commands, and doc updates.
Diffstat (limited to 'include')
-rw-r--r-- | include/ZeroTierOne.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/ZeroTierOne.h b/include/ZeroTierOne.h index 0a7c7984..8d54953a 100644 --- a/include/ZeroTierOne.h +++ b/include/ZeroTierOne.h @@ -93,6 +93,11 @@ struct ZT1_Node_Status * True if running; all other fields are technically undefined if this is false */ bool running; + + /** + * True if initialization is complete + */ + bool initialized; }; /** |