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
333 B
17 lines
333 B
//
|
|
// Created by root on 10/30/19.
|
|
//
|
|
|
|
#ifndef ECDAA_ISSUER_SERVER_H
|
|
#define ECDAA_ISSUER_SERVER_H
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
#include <unistd.h>
|
|
#include "common.h"
|
|
|
|
int server_start(conn_handler handler, int16_t port);
|
|
|
|
#endif //ECDAA_ISSUER_SERVER_H
|
|
|