20 lines
552 B
C
20 lines
552 B
C
#ifndef __PROTO_HANDLERS_STREAM_H__
|
|
#define __PROTO_HANDLERS_STREAM_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(
|
|
hmmmm_stream_StreamClientMessage_table_t msg,
|
|
uint64_t nonce,
|
|
ClientContext* ctx,
|
|
EmulContext* emulContext);
|
|
|
|
#endif // __PROTO_HANDLERS_STREAM_H__
|