ascii-chat 0.6.0
Real-time terminal-based video chat with ASCII art conversion
Loading...
Searching...
No Matches
websocket/transport.c
Go to the documentation of this file.
1
30#include "log/logging.h"
31
33 (void)sockfd;
34 (void)crypto_ctx;
35
36 log_error("WebSocket transport not yet implemented");
37 SET_ERRNO(ERROR_INTERNAL, "WebSocket transport is not yet implemented");
38
39 return NULL;
40}
#define SET_ERRNO(code, context_msg,...)
Set error code with custom context message and log it.
@ ERROR_INTERNAL
Definition error_codes.h:84
#define log_error(...)
Log an ERROR message.
int socket_t
Socket handle type (POSIX: int)
Definition socket.h:50
📝 Logging API with multiple log levels and terminal output control
Transport instance structure.
Definition transport.h:169
Cryptographic context structure.
Transport abstraction layer for ACIP protocol.
acip_transport_t * acip_websocket_transport_create(socket_t sockfd, crypto_context_t *crypto_ctx)
Create WebSocket transport from existing socket.