summaryrefslogtreecommitdiff
path: root/src/ghdlserver/ghdlserver.h
blob: e04209b7c8a4dc8067f3b8a42389138540ed16e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* 18.Mar.2017 - RM - Cleaned up.*/
/* 20.June.2020 - BM - Added OS dependent includes*/
#define _GNU_SOURCE
#include <stdio.h>

#include <stdlib.h>
#include <stdint.h>
#include <unistd.h>
#include <sys/types.h>
#include<string.h>

#ifdef __linux__
    #include <sys/socket.h>
    #include <netinet/in.h>
    #include <netdb.h>
#elif _WIN32
    #include<ws2tcpip.h>
    #include<winsock2.h>
    #include<eventsys.h>
    #include<windows.h>
#endif


// Should be enough..
#define MAX_BUF_SIZE 4096

//Defualt port number

//unlikely to have more than 16 active
//threads talking to the TB?
#define DEFAULT_MAX_CONNECTIONS 65535

int DEFAULT_SERVER_PORT;

//Vhpi Functions.
void   Vhpi_Initialize(int sock_port, char sock_ip[]);	/* 26.Sept.2019 - RP */
void   Vhpi_Exit();
void   Vhpi_Listen();
void   Vhpi_Send();
void   Vhpi_Set_Port_Value(char* reg_name, char* reg_value, int port_width);
void   Vhpi_Get_Port_Value(char* reg_name, char* reg_value, int port_width);