summaryrefslogtreecommitdiff
path: root/node/Packet.hpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2013-12-12 13:02:02 -0800
committerAdam Ierymenko <adam.ierymenko@gmail.com>2013-12-12 13:02:02 -0800
commit54d1b11b1981481ba177c8f7c84c179977f5652d (patch)
treeaa8eacfe1d0badfca3f9cb6e9856b9f458e1a785 /node/Packet.hpp
parentf038ed9ca2f3e65e063571e77cd48f1072f2d3e3 (diff)
parent68defd998008e83e5348d29cab5535dab3d444e8 (diff)
downloadinfinitytier-54d1b11b1981481ba177c8f7c84c179977f5652d.tar.gz
infinitytier-54d1b11b1981481ba177c8f7c84c179977f5652d.zip
Merge branch 'adamierymenko-dev'
Diffstat (limited to 'node/Packet.hpp')
-rw-r--r--node/Packet.hpp51
1 files changed, 3 insertions, 48 deletions
diff --git a/node/Packet.hpp b/node/Packet.hpp
index 56920f6f..6f3f9117 100644
--- a/node/Packet.hpp
+++ b/node/Packet.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_N_PACKET_HPP
-#define _ZT_N_PACKET_HPP
+#ifndef ZT_N_PACKET_HPP
+#define ZT_N_PACKET_HPP
#include <stdint.h>
#include <string.h>
@@ -615,52 +615,7 @@ public:
* It does not generate an OK or ERROR message, and is treated only as
* a hint to refresh now.
*/
- VERB_NETWORK_CONFIG_REFRESH = 12,
-
- /* Request information about a shared file:
- * <[1] flags, currently unused and must be 0>
- * <[2] 16-bit length of filename>
- * <[...] name of file being requested>
- *
- * OK response payload (indicates that we have and will share):
- * <[1] flags, currently unused and must be 0>
- * <[2] 16-bit length of filename>
- * <[...] name of file being requested>
- * <[64] full length SHA-512 hash of file contents>
- * <[4] 32-bit length of file in bytes>
- * <[5] Signing ZeroTier One identity address>
- * <[2] 16-bit length of signature of SHA-512 hash>
- * <[...] signature of SHA-512 hash>
- *
- * ERROR response payload:
- * <[2] 16-bit length of filename>
- * <[...] name of file being requested>
- *
- * Support is optional. Nodes should return UNSUPPORTED_OPERATION if
- * not supported or enabled.
- */
- VERB_FILE_INFO_REQUEST = 13,
-
- /* Request a piece of a shared file
- * <[16] first 16 bytes of SHA-512 of file being requested>
- * <[4] 32-bit index of desired chunk>
- * <[2] 16-bit length of desired chunk>
- *
- * OK response payload:
- * <[16] first 16 bytes of SHA-512 of file being requested>
- * <[4] 32-bit index of desired chunk>
- * <[2] 16-bit length of desired chunk>
- * <[...] the chunk>
- *
- * ERROR response payload:
- * <[16] first 16 bytes of SHA-512 of file being requested>
- * <[4] 32-bit index of desired chunk>
- * <[2] 16-bit length of desired chunk>
- *
- * Support is optional. Nodes should return UNSUPPORTED_OPERATION if
- * not supported or enabled.
- */
- VERB_FILE_BLOCK_REQUEST = 14
+ VERB_NETWORK_CONFIG_REFRESH = 12
};
/**