summaryrefslogtreecommitdiff
path: root/vchat-connection.h
blob: 766dc0a8878c059755d21d80c608f59a74ef99ad (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include <stdint.h>

int vc_connect(const char *host, const char *port);
void vc_sendmessage(const char *message);
int vc_receive();
int vc_poll();
void vc_disconnect();

const char *vchat_tls_version_external();