tor_multipath_voip/src/algo_utils.h

41 lines
1.8 KiB
C
Raw Normal View History

2019-03-07 15:57:02 +00:00
#pragma once
#include <glib-2.0/glib.h>
#include <glib-2.0/gmodule.h>
#include <glib-2.0/glib-object.h>
#include "algo_skel.h"
2019-03-20 09:28:52 +00:00
#define PACKET_BUFFER_SIZE 20
2019-03-15 15:44:47 +00:00
typedef void (*algo_ctx_free_misc)(void*);
2019-03-07 15:57:02 +00:00
struct algo_ctx {
uint8_t link_count;
uint8_t is_rdy;
struct algo_params ap;
2019-03-07 15:57:02 +00:00
int ref_count;
2019-03-19 12:50:38 +00:00
struct buffer_packet bps[PACKET_BUFFER_SIZE];
2019-03-20 14:13:16 +00:00
GQueue* free_buffer; // Available buffers
GHashTable* used_buffer; // Buffers used for reading or writing
GQueue* read_waiting; // Who wait to be notified for a read
GHashTable* application_waiting; // Structure that can be used by the algo for its internal logic
GHashTable* write_waiting; // Structure to track packets waiting to be written
void* misc; // Additional structures
algo_ctx_free_misc free_misc; // Fx ptr to free misc
2019-03-07 15:57:02 +00:00
};
2019-03-20 14:13:16 +00:00
void mv_buffer_rtow(struct algo_ctx* app_ctx, struct evt_core_fdinfo* from, struct evt_core_fdinfo* to);
void mv_buffer_wtof(struct algo_ctx* app_ctx, struct evt_core_fdinfo* from);
void mv_buffer_rtoa(struct algo_ctx* app_ctx, struct evt_core_fdinfo* from, void* to);
void mv_buffer_atow(struct algo_ctx* app_ctx, void* from, struct evt_core_fdinfo* to);
void mv_buffer_atof(struct algo_ctx* app_ctx, void* from);
2019-03-27 15:24:39 +00:00
void dup_buffer_tow(struct algo_ctx* app_ctx, struct buffer_packet* bp, struct evt_core_fdinfo* to);
2019-03-20 14:13:16 +00:00
2019-03-07 15:57:02 +00:00
struct buffer_packet* get_write_buffer(struct algo_ctx *app_ctx, struct evt_core_fdinfo *fdinfo);
struct buffer_packet* get_read_buffer(struct algo_ctx *app_ctx, struct evt_core_fdinfo *fdinfo);
2019-03-20 14:13:16 +00:00
struct buffer_packet* get_app_buffer(struct algo_ctx *app_ctx, void* idx);
void notify_read(struct evt_core_ctx* ctx, struct algo_ctx* app_ctx);
2019-03-07 15:57:02 +00:00
void free_naive(void* app_ctx);
void free_nothing(void* app_ctx);
void naive_free_simple(void* v);