aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/src/tcp_server.h
blob: 979e6dc9afad71bd1e3650f66c8a21e0e7dac79e (plain) (tree)
1
2
3
4
5
6
7
8
9
10






                                                          


                        

                       
                  
 

                                                               

                                                                                  
                                             
 
                                           

      
/*
 * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com>
 * This file is part of the "cimple" project.
 * For details, see https://github.com/egor-tensin/cimple.
 * Distributed under the MIT License.
 */

#ifndef __TCP_SERVER_H__
#define __TCP_SERVER_H__

#include "event_loop.h"

struct tcp_server;

typedef int (*tcp_server_conn_handler)(int conn_fd, void *arg);

int tcp_server_create(struct tcp_server **, struct event_loop *, const char *port,
                      tcp_server_conn_handler, void *arg);
void tcp_server_destroy(struct tcp_server *);

int tcp_server_accept(struct tcp_server *);

#endif