{"id":15047147,"url":"https://github.com/anesbelo/FtIRC","last_synced_at":"2025-12-24T05:29:01.059Z","repository":{"id":248272972,"uuid":"828226841","full_name":"abdelbenamara/FtIRC","owner":"abdelbenamara","description":"42 ft_irc project","archived":false,"fork":false,"pushed_at":"2024-12-26T10:05:36.000Z","size":238,"stargazers_count":2,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-04-10T00:50:51.486Z","etag":null,"topics":["2024","42","cpp98","irc","makefile"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/abdelbenamara.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-13T13:47:58.000Z","updated_at":"2024-12-26T10:05:40.000Z","dependencies_parsed_at":"2024-12-03T01:24:57.993Z","dependency_job_id":"b8c762c5-b21c-4cfd-abbe-06e16c81b686","html_url":"https://github.com/abdelbenamara/FtIRC","commit_stats":{"total_commits":72,"total_committers":4,"mean_commits":18.0,"dds":0.2777777777777778,"last_synced_commit":"c22847416d6dce894bd854af5e8157995718fba5"},"previous_names":["abdelbenamara/ftirc"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/abdelbenamara/FtIRC","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdelbenamara%2FFtIRC","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdelbenamara%2FFtIRC/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdelbenamara%2FFtIRC/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdelbenamara%2FFtIRC/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abdelbenamara","download_url":"https://codeload.github.com/abdelbenamara/FtIRC/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdelbenamara%2FFtIRC/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261841950,"owners_count":23217912,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["2024","42","cpp98","irc","makefile"],"created_at":"2024-09-24T20:54:50.776Z","updated_at":"2025-12-24T05:29:01.006Z","avatar_url":"https://github.com/abdelbenamara.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FtIRC\n\n## Compile\n\n```\nmake\n```\n```\nmake bonus\n```\n\n### Mandatory\n\n- [x] Code written in C++ 98\n- [x] No IRC client (only an IRC server)\n- [x] No server-to-server communication\n- [x] Excutable runs as follow: ```./ircserv \u003cport\u003e \u003cpassword\u003e```\n- [x] Multiple clients are handled at the same time without server hanging\n- [x] No fork (e.g. no child process)\n- [x] All I/O operations are non-blocking\n- [x] Only one call to epoll_wait() handles all operations (read, write, listen, etc)\n- [x] No read/write without calling epoll_wait()\n- [x] Communication is done with TCP/IP (v4 or v6)\n- [x] Reference IRC client works without any error (e.g. [irssi](https://irssi.org))\n- [x] Partial data reception (e.g. Ctrl + D when using netcat)\n- [x] Clean code (e.g. all messages are created with the builder design pattern)\n\nClient commands:\n\n- [x] PASS\n- [x] NICK\n- [x] USER\n- [x] OPER\n- [x] JOIN\n- [x] TOPIC\n- [x] INVITE\n- [x] KICK\n- [x] MODE (channel modes: iklot)\n- [x] PRIVMSG\n- [x] NOTICE\n\nNumeric replies:\n\n- [x] RPL_WELCOME\n- [x] RPL_CHANNELMODEIS\n- [x] RPL_CREATIONTIME\n- [x] RPL_NOTOPIC\n- [x] RPL_TOPIC\n- [x] RPL_TOPICWHOTIME\n- [x] RPL_INVITELIST\n- [x] RPL_ENDOFINVITELIST\n- [x] RPL_INVITING\n- [x] RPL_YOUREOPER\n- [x] ERR_NOSUCHNICK\n- [x] ERR_NOSUCHCHANNEL\n- [x] ERR_NORECIPIENT\n- [x] ERR_NOTEXTTOSEND\n- [x] ERR_NONICKNAMEGIVEN\n- [x] ERR_ERRONEUSNICKNAME\n- [x] ERR_USERNOTINCHANNEL\n- [x] ERR_NOTONCHANNEL\n- [x] ERR_USERONCHANNEL\n- [x] ERR_NEEDMOREPARAMS\n- [x] ERR_ALREADYREGISTRED\n- [x] ERR_PASSWDMISMATCH\n- [x] ERR_KEYSET\n- [x] ERR_CHANNELISFULL\n- [x] ERR_UNKNOWNMODE\n- [x] ERR_INVITEONLYCHAN\n- [x] ERR_BADCHANNELKEY\n- [x] ERR_BADCHANMASK\n- [x] ERR_CHANOPRIVSNEEDED\n- [x] ERR_INVALIDKEY\n- [x] ERR_INVALIDMODEPARAM\n\n### Bonus\n\n- [x] Bot (PRIVMSG to **GameBot** or on **#jan-ken-pon** channel)\n- [x] File transfer (initiated with PRIVMSG thanks to [irssi DCC](https://irssi.org/documentation/help/dcc/))\n\n### Enhancement\n\n- [x] Configuration file: ```./ircserv \u003cport\u003e \u003cpassword\u003e [\u003cconfiguration file\u003e]``` (cf. [ircserv.conf](etc/ircserv.conf))\n\nClient commands:\n\n- [x] USER (second parameter is an integer translated to bitmask to set _i_ and _w_ modes respectively on _1000_ and _0100_)\n- [x] PING\n- [x] QUIT\n- [x] LUSERS\n- [x] MOTD\n- [x] VERSION\n- [x] NAMES\n- [x] MODE (user modes: iow)\n- [x] WHO\n- [x] WALLOPS\n- [x] SUMMON (e.g. summon disabled)\n- [x] USERS (e.g. users disabled)\n\nServer commands:\n\n- [x] ERROR\n- [x] PONG\n\nNumeric replies:\n\n- [x] RPL_YOURHOST\n- [x] RPL_CREATED\n- [x] RPL_MYINFO\n- [x] RPL_ISUPPORT\n- [x] RPL_UMODEIS\n- [x] RPL_LUSERCLIENT\n- [x] RPL_LUSEROP\n- [x] RPL_LUSERUNKNOWN\n- [x] RPL_LUSERCHANNELS\n- [x] RPL_LUSERME\n- [x] RPL_LOCALUSERS\n- [x] RPL_GLOBALUSERS\n- [x] RPL_ENDOFWHO\n- [x] RPL_VERSION\n- [x] RPL_WHOREPLY\n- [x] RPL_NAMREPLY\n- [x] RPL_ENDOFNAMES\n- [x] RPL_MOTD\n- [x] RPL_MOTDSTART\n- [x] RPL_ENDOFMOTD\n- [x] ERR_NOSUCHSERVER\n- [x] ERR_TOOMANYCHANNELS\n- [x] ERR_TOOMANYTARGETS\n- [x] ERR_NOORIGIN\n- [x] ERR_INPUTTOOLONG\n- [x] ERR_UNKNOWNCOMMAND\n- [x] ERR_NOMOTD\n- [x] ERR_SUMMONDISABLED\n- [x] ERR_USERSDISABLED\n- [x] ERR_NOTREGISTERED\n- [x] ERR_NOPRIVILEGES\n- [x] ERR_UMODEUNKNOWNFLAG\n- [x] ERR_USERSDONTMATCH\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanesbelo%2FFtIRC","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanesbelo%2FFtIRC","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanesbelo%2FFtIRC/lists"}