sentry-contrib-native-sys 0.3.1

Unofficial FFI bindings to the Sentry Native SDK for Rust.
#include "sentry_disk_transport.h"
#include "sentry_alloc.h"
#include "sentry_core.h"
#include "sentry_database.h"
#include "sentry_envelope.h"
#include "sentry_path.h"
#include "sentry_string.h"

static void
send_envelope(sentry_envelope_t *envelope, void *state)
{
    const sentry_run_t *run = state;

    sentry__run_write_envelope(run, envelope);
    sentry_envelope_free(envelope);
}

sentry_transport_t *
sentry_new_disk_transport(const sentry_run_t *run)
{
    sentry_transport_t *transport = sentry_transport_new(send_envelope);
    if (!transport) {
        return NULL;
    }
    sentry_transport_set_state(transport, (void *)run);
    return transport;
}