flatbuffer base
This commit is contained in:
@@ -1,10 +1,16 @@
|
||||
#ifndef __PROTO_HANDLERS_CONTROL_H__
|
||||
#define __PROTO_HANDLERS_CONTROL_H__
|
||||
|
||||
#include "proto/msg.h"
|
||||
#include <stdint.h>
|
||||
#include "client.h"
|
||||
#include "context.h"
|
||||
#include "proto/dial.h"
|
||||
#include "control_reader.h"
|
||||
|
||||
void handleIncomingControlMessage(BaseMessage* msg, EmulContext* emulContext);
|
||||
void handleIncomingCtrlMessage(
|
||||
hmmmm_ctrl_CtrlClientMessage_table_t msg,
|
||||
uint64_t nonce,
|
||||
ClientContext* ctx,
|
||||
EmulContext* emulContext);
|
||||
|
||||
|
||||
#endif //ifndef __PROTO_HANDLERS_CONTROL_H__
|
||||
#endif // __PROTO_HANDLERS_CONTROL_H__
|
||||
|
||||
@@ -1,10 +1,16 @@
|
||||
#ifndef __PROTO_HANDLERS_MEM_H__
|
||||
#define __PROTO_HANDLERS_MEM_H__
|
||||
|
||||
#include "proto/msg.h"
|
||||
#include <stdint.h>
|
||||
#include "context.h"
|
||||
#include "client.h"
|
||||
#include "proto/dial.h"
|
||||
#include "mem_reader.h"
|
||||
|
||||
void handleIncomingMemMessage(BaseMessage* msg, ClientContext* ctx, EmulContext* emulContext);
|
||||
|
||||
#endif //ifndef __PROTO_HANDLERS_MEM_H__
|
||||
void handleIncomingMemMessage(
|
||||
hmmmm_mem_MemClientMessage_table_t msg,
|
||||
uint64_t nonce,
|
||||
ClientContext* ctx,
|
||||
EmulContext* emulContext);
|
||||
|
||||
#endif // __PROTO_HANDLERS_MEM_H__
|
||||
|
||||
@@ -1,12 +1,19 @@
|
||||
#ifndef __PROTO_HANDLERS_STREAM_H__
|
||||
#define __PROTO_HANDLERS_STREAM_H__
|
||||
|
||||
#include "proto/msg.h"
|
||||
#include <stdint.h>
|
||||
#include "context.h"
|
||||
#include "client.h"
|
||||
#include "proto/dial.h"
|
||||
|
||||
#include "stream_reader.h"
|
||||
|
||||
void unregisterClientStream(EmulContext* emulContext, ClientContext* ctx, uint32_t regId);
|
||||
void unregisterClientStreams(EmulContext* emulContext, ClientContext* ctx);
|
||||
void handleIncomingStreamMessage(BaseMessage* msg, ClientContext* ctx, EmulContext* emulContext);
|
||||
|
||||
#endif //ifndef __PROTO_HANDLERS_STREAM_H__
|
||||
void handleIncomingStreamMessage(
|
||||
hmmmm_stream_StreamClientMessage_table_t msg,
|
||||
uint64_t nonce,
|
||||
ClientContext* ctx,
|
||||
EmulContext* emulContext);
|
||||
|
||||
#endif // __PROTO_HANDLERS_STREAM_H__
|
||||
|
||||
Reference in New Issue
Block a user