aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/gnunet-service-conversation.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-02 16:55:10 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-02 16:55:10 +0000
commitdc30009133e6c1021ac293469e69ff4043155b15 (patch)
tree4b772494a8188474b0a91015a0f9df0413461de3 /src/conversation/gnunet-service-conversation.c
parentbc26a5a2898974dadf5ce818797f700bc3bce567 (diff)
downloadgnunet-dc30009133e6c1021ac293469e69ff4043155b15.tar.gz
gnunet-dc30009133e6c1021ac293469e69ff4043155b15.zip
-ensure external symbols have proper prefix for conversation service
Diffstat (limited to 'src/conversation/gnunet-service-conversation.c')
-rw-r--r--src/conversation/gnunet-service-conversation.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/conversation/gnunet-service-conversation.c b/src/conversation/gnunet-service-conversation.c
index 470485fed..5575b23fc 100644
--- a/src/conversation/gnunet-service-conversation.c
+++ b/src/conversation/gnunet-service-conversation.c
@@ -477,7 +477,7 @@ transmit_server_reject_message (void *cls, size_t size, void *buf)
477 477
478 if (NULL == cls) 478 if (NULL == cls)
479 { 479 {
480 msg->reason = htons (REJECT_REASON_NOT_AVAILABLE); 480 msg->reason = htons (GNUNET_CONVERSATION_REJECT_REASON_NOT_AVAILABLE);
481 } 481 }
482 else 482 else
483 { 483 {
@@ -1056,7 +1056,7 @@ handle_mesh_initiate_message (void *cls, struct GNUNET_MESH_Tunnel *tunnel,
1056 _ 1056 _
1057 ("Rejected call from %s because there is an active call"), 1057 ("Rejected call from %s because there is an active call"),
1058 GNUNET_i2s_full (peer)); 1058 GNUNET_i2s_full (peer));
1059 reject_reason = htons (REJECT_REASON_ACTIVE_CALL); 1059 reject_reason = htons (GNUNET_CONVERSATION_REJECT_REASON_ACTIVE_CALL);
1060 1060
1061 // Notifying client about missed call 1061 // Notifying client about missed call
1062 size_t msg_size = 1062 size_t msg_size =
@@ -1094,7 +1094,7 @@ handle_mesh_initiate_message (void *cls, struct GNUNET_MESH_Tunnel *tunnel,
1094 GNUNET_log (GNUNET_ERROR_TYPE_INFO, 1094 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1095 _("Got a call from %s while no client connected.\n"), 1095 _("Got a call from %s while no client connected.\n"),
1096 GNUNET_i2s_full (peer)); 1096 GNUNET_i2s_full (peer));
1097 reject_reason = htons (REJECT_REASON_NO_CLIENT); 1097 reject_reason = htons (GNUNET_CONVERSATION_REJECT_REASON_NO_CLIENT);
1098 // Store missed calls 1098 // Store missed calls
1099 struct MissedCall call; 1099 struct MissedCall call;
1100 memcpy (&(call.peer), peer, sizeof (struct GNUNET_PeerIdentity)); 1100 memcpy (&(call.peer), peer, sizeof (struct GNUNET_PeerIdentity));