From 0cbbcf288455b8657134bf5be0861232daa6c7d9 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Mon, 29 Jun 2015 16:01:01 -0700 Subject: [PATCH] Rename VERB_CMA to the more descriptive VERB_PHYSICAL_ADDRESS_PUSH --- node/Packet.cpp | 2 +- node/Packet.hpp | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/node/Packet.cpp b/node/Packet.cpp index f75d1df08..4d58815e0 100644 --- a/node/Packet.cpp +++ b/node/Packet.cpp @@ -51,7 +51,7 @@ const char *Packet::verbString(Verb v) case VERB_MULTICAST_GATHER: return "MULTICAST_GATHER"; case VERB_MULTICAST_FRAME: return "MULTICAST_FRAME"; case VERB_SET_EPHEMERAL_KEY: return "SET_EPHEMERAL_KEY"; - case VERB_CMA: return "CMA"; + case VERB_PHYSICAL_ADDRESS_PUSH: return "PHYSICAL_ADDRESS_PUSH"; } return "(unknown)"; } diff --git a/node/Packet.hpp b/node/Packet.hpp index 49201b712..d9f8d8885 100644 --- a/node/Packet.hpp +++ b/node/Packet.hpp @@ -825,7 +825,7 @@ public: */ VERB_SET_EPHEMERAL_KEY = 15, - /* "Call me at" -- push of potential endpoints for direct communication: + /* Push of potential endpoints for direct communication: * <[1] flags> * <[2] number of addresses> * <[...] address types and addresses> @@ -833,14 +833,14 @@ public: * Address types and addresses are of the same format as the destination * address type and address in HELLO. * - * The receiver may, upon receiving a CMA push, attempt to establish a + * The receiver may, upon receiving a push, attempt to establish a * direct link to one or more of the indicated addresses. Senders should - * only send CMA pushes to peers that they have some relationship + * only send address pushes to peers that they have some relationship * with such as a shared network membership or a mutual trust. * * OK/ERROR are not generated. */ - VERB_CMA = 16 + VERB_PHYSICAL_ADDRESS_PUSH = 16 }; /**