summaryrefslogtreecommitdiff
path: root/app/v3_c/src/include/process.h
blob: c88b23524c9f679b3ef4ddf258716084970dcfde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef PROCESS_H
#define PROCESS_H

#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>

int initProcess();
int requestProcess(int sockfd, struct sockaddr_in *addr, socklen_t *addrlen );
void freeProcess();

#endif