Top |
Service-side Channel Authentication interfacesService-side Channel Authentication interfaces — GInterfaces to implement authentication channels |
GInterface ├── TpSvcChannelInterfaceCaptchaAuthentication1 ├── TpSvcChannelInterfaceSASLAuthentication1 ╰── TpSvcChannelTypeServerAuthentication1
TpSvcChannelTypeServerAuthentication1 is implemented by TpBasePasswordChannel.
TpSvcChannelInterfaceSASLAuthentication1 is implemented by TpBasePasswordChannel.
The ServerAuthentication channel type represents a request for client/UI processes to carry out authentication with a server.
The SASLAuthentication interface allows authentication via SASL, and also allows providing a simple password to the connection manager for it to use with SASL or non-SASL mechanisms.
The CaptchaAuthentication interface (since 0.17.5) allows interactive captcha-solving so that the user can prove that they are not a bot, on protocols requiring this.
void (*tp_svc_channel_interface_sasl_authentication1_abort_sasl_impl) (TpSvcChannelInterfaceSASLAuthentication1 *self
,guint in_Reason
,const gchar *in_Debug_Message
,GDBusMethodInvocation *invocation
);
The signature of an implementation of the D-Bus method AbortSASL on interface im.telepathy.v1.Channel.Interface.SASLAuthentication1.
void (*tp_svc_channel_interface_sasl_authentication1_accept_sasl_impl) (TpSvcChannelInterfaceSASLAuthentication1 *self
,GDBusMethodInvocation *invocation
);
The signature of an implementation of the D-Bus method AcceptSASL on interface im.telepathy.v1.Channel.Interface.SASLAuthentication1.
void tp_svc_channel_interface_sasl_authentication1_emit_new_challenge (gpointer instance
,const GArray *arg_Challenge_Data
);
Type-safe wrapper around g_signal_emit to emit the NewChallenge signal on interface im.telepathy.v1.Channel.Interface.SASLAuthentication1.
void tp_svc_channel_interface_sasl_authentication1_emit_sasl_status_changed (gpointer instance
,guint arg_Status
,const gchar *arg_Reason
,GHashTable *arg_Details
);
Type-safe wrapper around g_signal_emit to emit the SASLStatusChanged signal on interface im.telepathy.v1.Channel.Interface.SASLAuthentication1.
void tp_svc_channel_interface_sasl_authentication1_implement_abort_sasl (TpSvcChannelInterfaceSASLAuthentication1Class *klass
,tp_svc_channel_interface_sasl_authentication1_abort_sasl_impl impl
);
Register an implementation for the AbortSASL method in the vtable of an implementation of this interface. To be called from the interface init function.
void tp_svc_channel_interface_sasl_authentication1_implement_accept_sasl (TpSvcChannelInterfaceSASLAuthentication1Class *klass
,tp_svc_channel_interface_sasl_authentication1_accept_sasl_impl impl
);
Register an implementation for the AcceptSASL method in the vtable of an implementation of this interface. To be called from the interface init function.
void tp_svc_channel_interface_sasl_authentication1_implement_respond (TpSvcChannelInterfaceSASLAuthentication1Class *klass
,tp_svc_channel_interface_sasl_authentication1_respond_impl impl
);
Register an implementation for the Respond method in the vtable of an implementation of this interface. To be called from the interface init function.
void tp_svc_channel_interface_sasl_authentication1_implement_start_mechanism (TpSvcChannelInterfaceSASLAuthentication1Class *klass
,tp_svc_channel_interface_sasl_authentication1_start_mechanism_impl impl
);
Register an implementation for the StartMechanism method in the vtable of an implementation of this interface. To be called from the interface init function.
void tp_svc_channel_interface_sasl_authentication1_implement_start_mechanism_with_data (TpSvcChannelInterfaceSASLAuthentication1Class *klass
,tp_svc_channel_interface_sasl_authentication1_start_mechanism_with_data_impl impl
);
Register an implementation for the StartMechanismWithData method in the vtable of an implementation of this interface. To be called from the interface init function.
void (*tp_svc_channel_interface_sasl_authentication1_respond_impl) (TpSvcChannelInterfaceSASLAuthentication1 *self
,const GArray *in_Response_Data
,GDBusMethodInvocation *invocation
);
The signature of an implementation of the D-Bus method Respond on interface im.telepathy.v1.Channel.Interface.SASLAuthentication1.
void
tp_svc_channel_interface_sasl_authentication1_return_from_abort_sasl
(GDBusMethodInvocation *invocation
);
Return successfully by calling g_dbus_method_invocation_return_value()
.
void
tp_svc_channel_interface_sasl_authentication1_return_from_accept_sasl
(GDBusMethodInvocation *invocation
);
Return successfully by calling g_dbus_method_invocation_return_value()
.
void
tp_svc_channel_interface_sasl_authentication1_return_from_respond
(GDBusMethodInvocation *invocation
);
Return successfully by calling g_dbus_method_invocation_return_value()
.
void
tp_svc_channel_interface_sasl_authentication1_return_from_start_mechanism
(GDBusMethodInvocation *invocation
);
Return successfully by calling g_dbus_method_invocation_return_value()
.
void
tp_svc_channel_interface_sasl_authentication1_return_from_start_mechanism_with_data
(GDBusMethodInvocation *invocation
);
Return successfully by calling g_dbus_method_invocation_return_value()
.
void (*tp_svc_channel_interface_sasl_authentication1_start_mechanism_impl) (TpSvcChannelInterfaceSASLAuthentication1 *self
,const gchar *in_Mechanism
,GDBusMethodInvocation *invocation
);
The signature of an implementation of the D-Bus method StartMechanism on interface im.telepathy.v1.Channel.Interface.SASLAuthentication1.
void (*tp_svc_channel_interface_sasl_authentication1_start_mechanism_with_data_impl) (TpSvcChannelInterfaceSASLAuthentication1 *self
,const gchar *in_Mechanism
,const GArray *in_Initial_Data
,GDBusMethodInvocation *invocation
);
The signature of an implementation of the D-Bus method StartMechanismWithData on interface im.telepathy.v1.Channel.Interface.SASLAuthentication1.
void (*tp_svc_channel_interface_captcha_authentication1_answer_captchas_impl) (TpSvcChannelInterfaceCaptchaAuthentication1 *self
,GHashTable *in_Answers
,GDBusMethodInvocation *invocation
);
The signature of an implementation of the D-Bus method AnswerCaptchas on interface im.telepathy.v1.Channel.Interface.CaptchaAuthentication1.
void (*tp_svc_channel_interface_captcha_authentication1_cancel_captcha_impl) (TpSvcChannelInterfaceCaptchaAuthentication1 *self
,guint in_Reason
,const gchar *in_Debug_Message
,GDBusMethodInvocation *invocation
);
The signature of an implementation of the D-Bus method CancelCaptcha on interface im.telepathy.v1.Channel.Interface.CaptchaAuthentication1.
void (*tp_svc_channel_interface_captcha_authentication1_get_captcha_data_impl) (TpSvcChannelInterfaceCaptchaAuthentication1 *self
,guint in_ID
,const gchar *in_Mime_Type
,GDBusMethodInvocation *invocation
);
The signature of an implementation of the D-Bus method GetCaptchaData on interface im.telepathy.v1.Channel.Interface.CaptchaAuthentication1.
void (*tp_svc_channel_interface_captcha_authentication1_get_captchas_impl) (TpSvcChannelInterfaceCaptchaAuthentication1 *self
,GDBusMethodInvocation *invocation
);
The signature of an implementation of the D-Bus method GetCaptchas on interface im.telepathy.v1.Channel.Interface.CaptchaAuthentication1.
void tp_svc_channel_interface_captcha_authentication1_implement_answer_captchas (TpSvcChannelInterfaceCaptchaAuthentication1Class *klass
,tp_svc_channel_interface_captcha_authentication1_answer_captchas_impl impl
);
Register an implementation for the AnswerCaptchas method in the vtable of an implementation of this interface. To be called from the interface init function.
void tp_svc_channel_interface_captcha_authentication1_implement_cancel_captcha (TpSvcChannelInterfaceCaptchaAuthentication1Class *klass
,tp_svc_channel_interface_captcha_authentication1_cancel_captcha_impl impl
);
Register an implementation for the CancelCaptcha method in the vtable of an implementation of this interface. To be called from the interface init function.
void tp_svc_channel_interface_captcha_authentication1_implement_get_captcha_data (TpSvcChannelInterfaceCaptchaAuthentication1Class *klass
,tp_svc_channel_interface_captcha_authentication1_get_captcha_data_impl impl
);
Register an implementation for the GetCaptchaData method in the vtable of an implementation of this interface. To be called from the interface init function.
void tp_svc_channel_interface_captcha_authentication1_implement_get_captchas (TpSvcChannelInterfaceCaptchaAuthentication1Class *klass
,tp_svc_channel_interface_captcha_authentication1_get_captchas_impl impl
);
Register an implementation for the GetCaptchas method in the vtable of an implementation of this interface. To be called from the interface init function.
void
tp_svc_channel_interface_captcha_authentication1_return_from_answer_captchas
(GDBusMethodInvocation *invocation
);
Return successfully by calling g_dbus_method_invocation_return_value()
.
void
tp_svc_channel_interface_captcha_authentication1_return_from_cancel_captcha
(GDBusMethodInvocation *invocation
);
Return successfully by calling g_dbus_method_invocation_return_value()
.
void tp_svc_channel_interface_captcha_authentication1_return_from_get_captcha_data (GDBusMethodInvocation *invocation
,const GArray *out_Captcha_Data
);
Return successfully by calling g_dbus_method_invocation_return_value()
.
void tp_svc_channel_interface_captcha_authentication1_return_from_get_captchas (GDBusMethodInvocation *invocation
,const GPtrArray *out_Captcha_Info
,guint out_Number_Required
,const gchar *out_Language
);
Return successfully by calling g_dbus_method_invocation_return_value()
.
typedef struct _TpSvcChannelTypeServerAuthentication1 TpSvcChannelTypeServerAuthentication1;
Dummy typedef representing any implementation of this interface.
typedef struct _TpSvcChannelTypeServerAuthentication1Class TpSvcChannelTypeServerAuthentication1Class;
The class of TpSvcChannelTypeServerAuthentication1.
This interface has no D-Bus methods, so an
implementation can typically pass NULL
to
G_IMPLEMENT_INTERFACE()
as the interface
initialization function.
typedef struct _TpSvcChannelInterfaceSASLAuthentication1 TpSvcChannelInterfaceSASLAuthentication1;
Dummy typedef representing any implementation of this interface.
typedef struct _TpSvcChannelInterfaceSASLAuthentication1Class TpSvcChannelInterfaceSASLAuthentication1Class;
The class of TpSvcChannelInterfaceSASLAuthentication1.
In a full implementation of this interface (i.e. all
methods implemented), the interface initialization
function used in G_IMPLEMENT_INTERFACE()
would
typically look like this:
static void implement_channel_interface_sasl_authentication1 (gpointer klass, gpointer unused G_GNUC_UNUSED) { #define IMPLEMENT(x) tp_svc_channel_interface_sasl_authentication1_implement_##x (\ klass, my_object_##x) IMPLEMENT (start_mechanism); IMPLEMENT (start_mechanism_with_data); IMPLEMENT (respond); IMPLEMENT (accept_sasl); IMPLEMENT (abort_sasl); #undef IMPLEMENT }
typedef struct _TpSvcChannelInterfaceCaptchaAuthentication1 TpSvcChannelInterfaceCaptchaAuthentication1;
Dummy typedef representing any implementation of this interface.
typedef struct _TpSvcChannelInterfaceCaptchaAuthentication1Class TpSvcChannelInterfaceCaptchaAuthentication1Class;
The class of TpSvcChannelInterfaceCaptchaAuthentication1.
In a full implementation of this interface (i.e. all
methods implemented), the interface initialization
function used in G_IMPLEMENT_INTERFACE()
would
typically look like this:
static void implement_channel_interface_captcha_authentication1 (gpointer klass, gpointer unused G_GNUC_UNUSED) { #define IMPLEMENT(x) tp_svc_channel_interface_captcha_authentication1_implement_##x (\ klass, my_object_##x) IMPLEMENT (get_captchas); IMPLEMENT (get_captcha_data); IMPLEMENT (answer_captchas); IMPLEMENT (cancel_captcha); #undef IMPLEMENT }
“new-challenge”
signalvoid user_function (TpSvcChannelInterfaceSASLAuthentication1 *self, GArray_guchar_ *arg_Challenge_Data, gpointer user_data)
The NewChallenge D-Bus signal is emitted whenever this GObject signal is.
self |
an object |
|
arg_Challenge_Data |
const GArray * (FIXME, generate documentation) |
|
user_data |
user data set when the signal handler was connected. |
Flags: Has Details
“s-as-lstatus-changed”
signalvoid user_function (TpSvcChannelInterfaceSASLAuthentication1 *self, guint arg_Status, gchar *arg_Reason, gpointer user_data)
The SASLStatusChanged D-Bus signal is emitted whenever this GObject signal is.
self |
an object |
|
arg_Status |
guint (FIXME, generate documentation) |
|
arg_Reason |
const gchar * (FIXME, generate documentation) |
|
arg_Details |
GHashTable * (FIXME, generate documentation) |
|
user_data |
user data set when the signal handler was connected. |
Flags: Has Details