Service-side TLS interfaces

Service-side TLS interfaces — GInterfaces to implement Chan.T.ServerTLSConnection

Functions

Signals

void accepted Has Details
void rejected Has Details

Types and Values

Object Hierarchy

    GInterface
    ├── TpSvcAuthenticationTLSCertificate
    ╰── TpSvcChannelTypeServerTLSConnection1

Includes

#include <telepathy-glib/telepathy-glib-dbus.h>

Description

Channel.Type.ServerTLSConnection can be handled by clients to check servers' TLS certificates interactively. The actual certificates are represented by a separate TLSCertificate object.

Functions

tp_svc_authentication_tls_certificate_accept_impl ()

void
(*tp_svc_authentication_tls_certificate_accept_impl)
                               (TpSvcAuthenticationTLSCertificate *self,
                                GDBusMethodInvocation *invocation);

The signature of an implementation of the D-Bus method Accept on interface im.telepathy.v1.Authentication.TLSCertificate.

Parameters

self

The object implementing this interface

 

invocation

Used to return values or throw an error

 

tp_svc_authentication_tls_certificate_return_from_accept ()

void
tp_svc_authentication_tls_certificate_return_from_accept
                               (GDBusMethodInvocation *invocation);

Return successfully by calling g_dbus_method_invocation_return_value().

Parameters

invocation

The D-Bus method invocation context

 

tp_svc_authentication_tls_certificate_implement_accept ()

void
tp_svc_authentication_tls_certificate_implement_accept
                               (TpSvcAuthenticationTLSCertificateClass *klass,
                                tp_svc_authentication_tls_certificate_accept_impl impl);

Register an implementation for the Accept method in the vtable of an implementation of this interface. To be called from the interface init function.

Parameters

klass

A class whose instances implement this interface

 

impl

A callback used to implement the Accept D-Bus method

 

tp_svc_authentication_tls_certificate_emit_accepted ()

void
tp_svc_authentication_tls_certificate_emit_accepted
                               (gpointer instance);

Type-safe wrapper around g_signal_emit to emit the Accepted signal on interface im.telepathy.v1.Authentication.TLSCertificate.

Parameters

instance

The object implementing this interface

 

tp_svc_authentication_tls_certificate_reject_impl ()

void
(*tp_svc_authentication_tls_certificate_reject_impl)
                               (TpSvcAuthenticationTLSCertificate *self,
                                const GPtrArray *in_Rejections,
                                GDBusMethodInvocation *invocation);

The signature of an implementation of the D-Bus method Reject on interface im.telepathy.v1.Authentication.TLSCertificate.

Parameters

self

The object implementing this interface

 

in_Rejections

const GPtrArray * (FIXME, generate documentation)

 

invocation

Used to return values or throw an error

 

tp_svc_authentication_tls_certificate_return_from_reject ()

void
tp_svc_authentication_tls_certificate_return_from_reject
                               (GDBusMethodInvocation *invocation);

Return successfully by calling g_dbus_method_invocation_return_value().

Parameters

invocation

The D-Bus method invocation context

 

tp_svc_authentication_tls_certificate_implement_reject ()

void
tp_svc_authentication_tls_certificate_implement_reject
                               (TpSvcAuthenticationTLSCertificateClass *klass,
                                tp_svc_authentication_tls_certificate_reject_impl impl);

Register an implementation for the Reject method in the vtable of an implementation of this interface. To be called from the interface init function.

Parameters

klass

A class whose instances implement this interface

 

impl

A callback used to implement the Reject D-Bus method

 

tp_svc_authentication_tls_certificate_emit_rejected ()

void
tp_svc_authentication_tls_certificate_emit_rejected
                               (gpointer instance,
                                const GPtrArray *arg_Rejections);

Type-safe wrapper around g_signal_emit to emit the Rejected signal on interface im.telepathy.v1.Authentication.TLSCertificate.

Parameters

instance

The object implementing this interface

 

arg_Rejections

const GPtrArray * (FIXME, generate documentation)

 

Types and Values

TpSvcChannelTypeServerTLSConnection1

typedef struct _TpSvcChannelTypeServerTLSConnection1 TpSvcChannelTypeServerTLSConnection1;

Dummy typedef representing any implementation of this interface.


TpSvcChannelTypeServerTLSConnection1Class

typedef struct _TpSvcChannelTypeServerTLSConnection1Class TpSvcChannelTypeServerTLSConnection1Class;

The class of TpSvcChannelTypeServerTLSConnection1. This interface has no D-Bus methods, so an implementation can typically pass NULL to G_IMPLEMENT_INTERFACE() as the interface initialization function.


TpSvcAuthenticationTLSCertificate

typedef struct _TpSvcAuthenticationTLSCertificate TpSvcAuthenticationTLSCertificate;

Dummy typedef representing any implementation of this interface.


TpSvcAuthenticationTLSCertificateClass

typedef struct _TpSvcAuthenticationTLSCertificateClass TpSvcAuthenticationTLSCertificateClass;

The class of TpSvcAuthenticationTLSCertificate.

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_authentication_tls_certificate (gpointer klass,
    gpointer unused G_GNUC_UNUSED)
{
#define IMPLEMENT(x) tp_svc_authentication_tls_certificate_implement_##x (\
  klass, my_object_##x)
  IMPLEMENT (accept);
  IMPLEMENT (reject);
#undef IMPLEMENT
}

Signal Details

The “accepted” signal

void
user_function (TpSvcAuthenticationTLSCertificate *self,
               gpointer                           user_data)

The Accepted D-Bus signal is emitted whenever this GObject signal is.

Parameters

self

an object

 

user_data

user data set when the signal handler was connected.

 

Flags: Has Details


The “rejected” signal

void
user_function (TpSvcAuthenticationTLSCertificate *self,
               gpointer                           user_data)

The Rejected D-Bus signal is emitted whenever this GObject signal is.

Parameters

self

an object

 

arg_Rejections

const GPtrArray * (FIXME, generate documentation)

 

user_data

user data set when the signal handler was connected.

 

Flags: Has Details