First draft

This commit is contained in:
2025-11-07 15:57:11 +00:00
commit f306df9daf
13 changed files with 502 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
// messaging.h - Defines structures used during (de)construction of messages.
#pragma once
#include <stdint.h>
#include <stddef.h>
#include "incp2.h"
typedef int endpoint_t; //REVIEW: Figure this one out. Where the values come from, where they
// are defined, etc.
#define INCP_ENDPOINT_NVAL (~(endpoint_t)0)
#define INCP_ENDPOINT_TTC ((endpoint_t)1)
#define DEFAULT_MSGBUF_SIZE 64