Skip to content

cgray987/ft_irc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
Cullen Gray
Dec 6, 2024
b0242c1 · Dec 6, 2024

History

85 Commits
Nov 28, 2024
Nov 21, 2024
Dec 3, 2024
Dec 2, 2024
Nov 21, 2024
Dec 6, 2024
Dec 6, 2024
Nov 1, 2024
Nov 21, 2024
Nov 25, 2024
Dec 6, 2024
Nov 26, 2024
Dec 6, 2024
Dec 6, 2024
Dec 6, 2024
Dec 6, 2024
Nov 21, 2024
Dec 6, 2024
Dec 6, 2024
Dec 6, 2024
Nov 5, 2024
Nov 25, 2024

Repository files navigation

ft_irc

42 Project to create an IRC server in C++98 fully compatible with an official client.

About:

Mandatory part:

  • Communication between client and server has to be done via TCP/IP (v4 or v6).
  • You must be able to authenticate, set a nickname, a username, join a channel, send and receive private messages using your reference client.
  • All the messages sent from one client to a channel have to be forwarded to every other client that joined the channel.
  • You must have operators and regular users.
  • Then, you have to implement the commands that are specific to channel operators:
    • KICK - Eject a client from the channel
    • INVITE - Invite a client to a channel
    • TOPIC - Change or view the channel topic
    • MODE - Change the channel’s mode:
      • i: Set/remove Invite-only channel
      • t: Set/remove the restrictions of the TOPIC command to channel operators
      • k: Set/remove the channel key (password)
      • o: Give/take channel operator privilege
      • l: Set/remove the user limit to channel

Usage:

# Clone the repository:
$> git clone --recursive https://github.com/cgray987/ft_irc.git

# Compile:
$> make

# Run with valid arguments:
$> ./ircserv <port> <password>

About

Creating an IRC server using c++.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published