25 lines
1.1 KiB
C++
25 lines
1.1 KiB
C++
/******************************************************************************/
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* irc.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: vvaas <vvaas@student.42angouleme.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/11/29 13:24:01 by vvaas #+# #+# */
|
|
/* Updated: 2024/01/21 14:20:31 by vvaas ### ########.fr */
|
|
/* */
|
|
/******************************************************************************/
|
|
|
|
#ifndef IRC_H
|
|
# define IRC_H
|
|
|
|
# include <iostream>
|
|
# include <string>
|
|
# include <sys/socket.h>
|
|
# include <netinet/in.h>
|
|
# include <unistd.h>
|
|
# include <cstdlib>
|
|
# include <sys/socket.h>
|
|
# include <arpa/inet.h>
|
|
#endif
|