twinkl-client/include/twinklsocket.h

13 lines
251 B
C
Raw Normal View History

2015-09-09 19:37:00 +02:00
#ifndef _TWINKLSOCKET_H
#define _TWINKLSOCKET_H
#include "message.h"
int twinklsocket_open(const char *host, const char *port);
2015-09-09 19:37:00 +02:00
void twinklsocket_send(int sockfd, const struct twinkl_message *message);
2015-09-09 19:37:00 +02:00
void twinklsocket_close(int sockfd);
2015-09-09 19:37:00 +02:00
#endif