penguin/tinyproxy

An L4 proxy designed to act as a tiny transparent shim

src/worker.h

raw ยท 120 bytes

#ifndef WORKER_H
#define WORKER_H

struct event_base;

struct worker {
	struct event_base *base;
	size_t id;
};

#endif