aboutsummaryrefslogtreecommitdiff
path: root/src/core/core_api.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-07-30 22:01:43 +0000
committerChristian Grothoff <christian@grothoff.org>2016-07-30 22:01:43 +0000
commite9dbabbabb9edd41bb7d7cb907826abdd8edb257 (patch)
tree70c9655d5aa4b68aa5b840507af4959a21f54f4c /src/core/core_api.c
parent33533a0e9955dcadc0857d824aa976e3fe028527 (diff)
downloadgnunet-e9dbabbabb9edd41bb7d7cb907826abdd8edb257.tar.gz
gnunet-e9dbabbabb9edd41bb7d7cb907826abdd8edb257.zip
draft of new core API MQ-based implementation
Diffstat (limited to 'src/core/core_api.c')
-rw-r--r--src/core/core_api.c38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/core/core_api.c b/src/core/core_api.c
index acdac5fa4..caf614afc 100644
--- a/src/core/core_api.c
+++ b/src/core/core_api.c
@@ -917,44 +917,6 @@ GNUNET_CORE_connect (const struct GNUNET_CONFIGURATION_Handle *cfg,
917 917
918 918
919/** 919/**
920 * Connect to the core service. Note that the connection may complete
921 * (or fail) asynchronously. This function primarily causes the given
922 * callback notification functions to be invoked whenever the
923 * specified event happens. The maximum number of queued
924 * notifications (queue length) is per client; the queue is shared
925 * across all types of notifications. So a slow client that registers
926 * for @a outbound_notify also risks missing @a inbound_notify messages.
927 * Certain events (such as connect/disconnect notifications) are not
928 * subject to queue size limitations.
929 *
930 * @param cfg configuration to use
931 * @param cls closure for the various callbacks that follow (including handlers in the handlers array)
932 * @param init callback to call once we have successfully
933 * connected to the core service
934 * @param connects function to call on peer connect, can be NULL
935 * @param disconnects function to call on peer disconnect / timeout, can be NULL
936 * @param handlers callbacks for messages we care about, NULL-terminated
937 * note that the core is allowed to drop notifications about inbound
938 * messages if the client does not process them fast enough (for this
939 * notification type, a bounded queue is used)
940 * @return handle to the core service (only useful for disconnect until @a init is called),
941 * NULL on error (in this case, init is never called)
942 */
943struct GNUNET_CORE_Handle *
944GNUNET_CORE_connecT (const struct GNUNET_CONFIGURATION_Handle *cfg,
945 void *cls,
946 GNUNET_CORE_StartupCallback init,
947 GNUNET_CORE_ConnecTEventHandler connects,
948 GNUNET_CORE_DisconnecTEventHandler disconnects,
949 const struct GNUNET_MQ_MessageHandler *handlers)
950{
951 GNUNET_break (0); // not implemented
952 // NOTE: re-enable core-related tests in ats-tests/ once implemented!
953 return NULL;
954}
955
956
957/**
958 * Disconnect from the core service. This function can only 920 * Disconnect from the core service. This function can only
959 * be called *after* all pending #GNUNET_CORE_notify_transmit_ready() 921 * be called *after* all pending #GNUNET_CORE_notify_transmit_ready()
960 * requests have been explicitly canceled. 922 * requests have been explicitly canceled.