dtls_new_context method

Pointer<dtls_context_t> dtls_new_context(
  1. Pointer<Void> app_data
)

Creates a new context object. The storage allocated for the new object must be released with dtls_free_context().

Implementation

ffi.Pointer<dtls_context_t> dtls_new_context(
  ffi.Pointer<ffi.Void> app_data,
) {
  return _dtls_new_context(
    app_data,
  );
}