Hash :
e8923ad6
Author :
Thomas de Grivel
Date :
2024-07-21T21:07:00
/* kc3
* Copyright 2022,2023,2024 kmx.io <contact@kmx.io>
*
* Permission is hereby granted to use this software granted the above
* copyright notice and this permission paragraph are included in all
* copies and substantial portions of this software.
*
* THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
* PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
* AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
* THIS SOFTWARE.
*/
#ifndef HTTP_TYPES_H
#define HTTP_TYPES_H
#include <sys/socket.h>
#include <libkc3/types.h>
/* 1 */
typedef s32 t_socket;
typedef struct socket_buf s_socket_buf;
/* 2 */
typedef t_socket *p_socket;
/* Struct 1 */
struct socket_buf {
s_buf_rw buf_rw;
t_socket sockfd;
struct sockaddr_storage addr;
u32 addr_len;
};
#endif /* HTTP_TYPES_H */