mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2024-11-25 17:44:01 +01:00
10 lines
206 B
C
10 lines
206 B
C
#pragma once
|
|
#include <assert.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <sys/types.h>
|
|
|
|
void HexDump(const uint8_t* src, size_t len);
|
|
int MakeNonBlocking(int sfd);
|
|
int CreateSocket(uint16_t port);
|