gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnunet] branch master updated: Renamed Phase inventory active -> active


From: gnunet
Subject: [gnunet] branch master updated: Renamed Phase inventory active -> active decoding & Added idea folder to git ignore
Date: Wed, 17 Feb 2021 17:02:48 +0100

This is an automated email from the git hooks/post-receive script.

elias-summermatter pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new 333459251 Renamed Phase inventory active -> active decoding & Added 
idea folder to git ignore
333459251 is described below

commit 3334592512312deacb8f2e76dc01acc497afac74
Author: Elias Summermatter <elias.summermatter@seccom.ch>
AuthorDate: Wed Feb 17 15:57:46 2021 +0100

    Renamed Phase inventory active -> active decoding & Added idea folder to 
git ignore
---
 .gitignore                     |  3 +++
 src/setu/gnunet-service-setu.c | 10 +++++-----
 2 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/.gitignore b/.gitignore
index b076501bc..fce94ea54 100644
--- a/.gitignore
+++ b/.gitignore
@@ -73,3 +73,6 @@ cmake/
 build
 CMakeLists.txt
 CMakeFiles.txt
+
+# Prevent IDEA files from being pushed
+.idea/
diff --git a/src/setu/gnunet-service-setu.c b/src/setu/gnunet-service-setu.c
index e5d8751f2..8e379bfda 100644
--- a/src/setu/gnunet-service-setu.c
+++ b/src/setu/gnunet-service-setu.c
@@ -108,7 +108,7 @@ enum UnionOperationPhase
   /**
    * We are decoding an IBF.
    */
-  PHASE_INVENTORY_ACTIVE,
+  PHASE_ACTIVE_DECODING,
 
   /**
    * The other peer is decoding the IBF we just sent.
@@ -1552,7 +1552,7 @@ decode_and_send (struct Operation *op)
   unsigned int num_decoded;
   struct InvertibleBloomFilter *diff_ibf;
 
-  GNUNET_assert (PHASE_INVENTORY_ACTIVE == op->phase);
+  GNUNET_assert (PHASE_ACTIVE_DECODING == op->phase);
 
   if (GNUNET_OK !=
       prepare_ibf (op,
@@ -1822,7 +1822,7 @@ handle_union_p2p_ibf (void *cls,
   {
     LOG (GNUNET_ERROR_TYPE_DEBUG,
          "received full ibf\n");
-    op->phase = PHASE_INVENTORY_ACTIVE;
+    op->phase = PHASE_ACTIVE_DECODING;
     if (GNUNET_OK !=
         decode_and_send (op))
     {
@@ -2438,7 +2438,7 @@ check_union_p2p_offer (void *cls,
 
   /* look up elements and send them */
   if ((op->phase != PHASE_INVENTORY_PASSIVE) &&
-      (op->phase != PHASE_INVENTORY_ACTIVE))
+      (op->phase != PHASE_ACTIVE_DECODING))
   {
     GNUNET_break_op (0);
     return GNUNET_SYSERR;
@@ -2547,7 +2547,7 @@ handle_union_p2p_done (void *cls,
      */GNUNET_CADET_receive_done (op->channel);
     maybe_finish (op);
     return;
-  case PHASE_INVENTORY_ACTIVE:
+  case PHASE_ACTIVE_DECODING:
     LOG (GNUNET_ERROR_TYPE_DEBUG,
          "got DONE (as active partner), waiting to finish\n");
     /* All demands of the other peer are satisfied,

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]