pbft/hosts.h

18 lines
215 B
C
Raw Normal View History

2025-01-25 00:01:36 -05:00
#ifndef H_HOST
#define H_HOST
#include <netinet/in.h>
struct host {
char *name;
int replica_index;
int sockfd;
struct sockaddr_in conn;
int h_port;
int c_port;
};
void init_hosts(char *file);
#endif