You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
348 B
17 lines
348 B
//
|
|
// Created by root on 10/30/19.
|
|
//
|
|
|
|
#ifndef ECDAA_ISSUER_CLIENT_H
|
|
#define ECDAA_ISSUER_CLIENT_H
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <sys/socket.h>
|
|
#include <unistd.h>
|
|
#include <arpa/inet.h>
|
|
#include "common.h"
|
|
|
|
int client_connect(conn_handler handler, char *ip_str, int16_t port);
|
|
|
|
#endif //ECDAA_ISSUER_CLIENT_H
|
|
|