mirror of
https://github.com/berlin-open-wireless-lab/DAWN.git
synced 2025-03-09 15:40:12 +00:00
13 lines
274 B
C
13 lines
274 B
C
#ifndef __DAWN_NETWORKSOCKET_H
|
|
#define __DAWN_NETWORKSOCKET_H
|
|
|
|
#include <pthread.h>
|
|
|
|
pthread_mutex_t send_mutex;
|
|
|
|
int init_socket_runopts(char *_ip, char *_port, int broadcast_socket);
|
|
int send_string(char *msg);
|
|
int send_string_enc(char *msg);
|
|
void close_socket();
|
|
|
|
#endif
|