12 lines
320 B
C
12 lines
320 B
C
#ifndef __PROTO_DIAL_H__
|
|
#define __PROTO_DIAL_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "context.h"
|
|
#include "ptQueue/inc/spsc.h"
|
|
|
|
void broadcastClients(EmulContext* emulContext, uint8_t* msg, size_t msgLen);
|
|
void dispatchOutgoingMessage(queue_spsc_t* outMsgQueue, ws_cli_conn_t clientIdx, uint8_t* msg, size_t msgLen);
|
|
|
|
#endif |