diff --git a/coreapi/event.h b/coreapi/event.h
index 4b3e26bd9..0cf107fd7 100644
--- a/coreapi/event.h
+++ b/coreapi/event.h
@@ -37,9 +37,9 @@ typedef struct _LinphoneEvent LinphoneEvent;
* Enum for subscription direction (incoming or outgoing).
**/
enum _LinphoneSubscriptionDir{
- LinphoneSubscriptionIncoming,
- LinphoneSubscriptionOutgoing,
- LinphoneSubscriptionInvalidDir
+ LinphoneSubscriptionIncoming, /**< Incoming subscription. */
+ LinphoneSubscriptionOutgoing, /**< Outgoing subscription. */
+ LinphoneSubscriptionInvalidDir /**< Invalid subscription direction. */
};
/**
diff --git a/coreapi/help/doxygen.dox b/coreapi/help/doxygen.dox
index 656f25e09..8831758d6 100644
--- a/coreapi/help/doxygen.dox
+++ b/coreapi/help/doxygen.dox
@@ -61,7 +61,7 @@
*like \link linphone_proxy_config_set_server_addr() proxy address \endlink , \link linphone_proxy_config_set_identity() user id \endlink, \link linphone_proxy_config_expires() refresh period \endlink, and so on.
*
A created proxy config using linphone_proxy_config_new(), once configured, must be added to #LinphoneCore using function linphone_core_add_proxy_config().
*
It is recommended to set a default \link #LinphoneProxyConfig proxy config \endlink using function linphone_core_set_default_proxy(). Once done, if \link #LinphoneProxyConfig a proxy config \endlink has been configured with attribute \link linphone_proxy_config_enable_register() enable register \endlink , next call to linphone_core_iterate() triggers a SIP register.
- *
Registration status is reported by #LinphoneRegistrationStateCb.
+ *
Registration status is reported by LinphoneCoreRegistrationStateChangedCb.
*
*
This pseudo code demonstrates basic registration operations:
*
\code
@@ -96,7 +96,7 @@
}
\endcode
*
Authentication:
- *
Most of the time, registration requires \ref authentication "authentication" to succed. #LinphoneAuthInfo info must be either added to #LinphoneCore using function linphone_core_add_auth_info() before #LinphoneProxyConfig is added to Linphone core, or on demand from call back #AuthInfoRequested .
+ *
Most of the time, registration requires \ref authentication "authentication" to succeed. #LinphoneAuthInfo info must be either added to #LinphoneCore using function linphone_core_add_auth_info() before #LinphoneProxyConfig is added to Linphone core, or on demand from call back #LinphoneCoreAuthInfoRequestedCb.
*
*
Unregistration:
*
Unregistration or any changes to #LinphoneProxyConfig must be first started by a call to function linphone_proxy_config_edit() and validated by function linphone_proxy_config_done()
@@ -203,7 +203,7 @@ void text_received(LinphoneCore *lc, LinphoneChatRoom *room, const LinphoneAddre
* While initiating the second call, the first one is automatically paused.
* Then, once the second call is established, the application has the possibility to merge the two calls to form a conference where each participant
* (the local participant, the remote destination of the first call, the remote destination of the second call) can talk together.
- * This must be done by adding the two calls to the conference using \link linphone_call_add_to_conference() \endlink
+ * This must be done by adding the two calls to the conference using \link linphone_core_add_to_conference() \endlink
*
* Once merged into a conference the LinphoneCall objects representing the calls that were established remain unchanged, except that
* they are tagged as part of the conference (see \link linphone_call_is_in_conference() \endlink ). The calls in a conference are in the LinphoneCallStreamsRunning state.
@@ -270,7 +270,7 @@ and register a keep-alive handler for periodically refreshing the registration.
}];
\endcode