summaryrefslogtreecommitdiff
path: root/node/Packet.hpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2013-07-27 13:36:27 -0400
committerAdam Ierymenko <adam.ierymenko@gmail.com>2013-07-27 13:36:27 -0400
commitb0a83093ce698390a4e2d266ba1c63ee241cd7ad (patch)
tree5b7d2f15e65c14d9ff220f19b2ee9f728757b2be /node/Packet.hpp
parent57d8730f1b3da3f9fe23a9fa02c8557b80bf6716 (diff)
downloadinfinitytier-b0a83093ce698390a4e2d266ba1c63ee241cd7ad.tar.gz
infinitytier-b0a83093ce698390a4e2d266ba1c63ee241cd7ad.zip
Back out of RPC... blech. Have a better idea.
Diffstat (limited to 'node/Packet.hpp')
-rw-r--r--node/Packet.hpp21
1 files changed, 1 insertions, 20 deletions
diff --git a/node/Packet.hpp b/node/Packet.hpp
index 8b06d1a5..5ccfae45 100644
--- a/node/Packet.hpp
+++ b/node/Packet.hpp
@@ -463,26 +463,7 @@ public:
*
* No OK or ERROR is generated.
*/
- VERB_MULTICAST_FRAME = 9,
-
- /* Call a plugin via RPC:
- * <[2] length of function name>
- * <[...] function name>
- * [<[2] length of argument>]
- * [<[...] argument>]
- * [... additional length/argument pairs ...]
- *
- * This generates ERROR_NOT_FOUND if the specified function was not
- * found. Otherwise it generates an OK message. The OK message has
- * the same format as the request, except arguments are replaced
- * by results.
- *
- * This can be used to implement simple RPC. No retransmission or
- * other guarantees are made, so it behaves like UDP-based RPC
- * protocols. Plugins are typically run by supernodes and are used
- * to implement network lookup and other services.
- */
- VERB_RPC = 10
+ VERB_MULTICAST_FRAME = 9
};
/**