aboutsummaryrefslogtreecommitdiff
path: root/src/mesh/gnunet-service-mesh_connection.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesh/gnunet-service-mesh_connection.c')
-rw-r--r--src/mesh/gnunet-service-mesh_connection.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesh/gnunet-service-mesh_connection.c b/src/mesh/gnunet-service-mesh_connection.c
index 07e75ab87..453a94428 100644
--- a/src/mesh/gnunet-service-mesh_connection.c
+++ b/src/mesh/gnunet-service-mesh_connection.c
@@ -1382,7 +1382,7 @@ handle_mesh_encrypted (const struct GNUNET_PeerIdentity *peer,
1382 } 1382 }
1383 fc->last_pid_recv = pid; 1383 fc->last_pid_recv = pid;
1384 GMT_handle_encrypted (c->t, msg, fwd); 1384 GMT_handle_encrypted (c->t, msg, fwd);
1385 send_ack (c, NULL, fwd); 1385 GMC_send_ack (c, NULL, fwd);
1386 return GNUNET_OK; 1386 return GNUNET_OK;
1387 } 1387 }
1388 1388
@@ -1394,7 +1394,7 @@ handle_mesh_encrypted (const struct GNUNET_PeerIdentity *peer,
1394 { 1394 {
1395 GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO); 1395 GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO);
1396 LOG (GNUNET_ERROR_TYPE_WARNING, " TTL is 0, DROPPING!\n"); 1396 LOG (GNUNET_ERROR_TYPE_WARNING, " TTL is 0, DROPPING!\n");
1397 send_ack (c, NULL, fwd); 1397 GMC_send_ack (c, NULL, fwd);
1398 return GNUNET_OK; 1398 return GNUNET_OK;
1399 } 1399 }
1400 GNUNET_STATISTICS_update (stats, "# messages forwarded", 1, GNUNET_NO); 1400 GNUNET_STATISTICS_update (stats, "# messages forwarded", 1, GNUNET_NO);
@@ -1585,7 +1585,7 @@ GMC_handle_poll (void *cls, const struct GNUNET_PeerIdentity *peer,
1585 pid, fc->last_pid_recv); 1585 pid, fc->last_pid_recv);
1586 fc->last_pid_recv = pid; 1586 fc->last_pid_recv = pid;
1587 fwd = fc == &c->fwd_fc; 1587 fwd = fc == &c->fwd_fc;
1588 send_ack (c, NULL, fwd); 1588 GMC_send_ack (c, NULL, fwd);
1589 1589
1590 return GNUNET_OK; 1590 return GNUNET_OK;
1591} 1591}