summary refs log tree commit diff
path: root/Makefile
AgeCommit message (Collapse)Author
11 daysFix linkingNakidai
CFLAGS is a *c*ompiler flags and thus are unneeded for linking, perhaps even harmful. LDLIBS are needed for linking as program can require some external libraries and those should be listed exactly here
13 daysAdd WHOIS and config parsingNakidai
Now users can query each other Plus, server info and creation date can be changed without recompiling using configuration file in IRC message format which is loaded on startup TODO: since readcfg uses IRC logic, handle() now should be able to deal with commands ending with simply \n
2026-02-01FixesNakidai
- Now code depends on config.h in Makefile - By default the smallest timeout is chosen for poll() - Somewhy there was sizeof(PEER_QUIT_MAX)...
2026-01-10Make all files dependent on ircd.hNakidai
There were bugs when struct layout was changed, and this was right because needed files were not rebuilt. This is fixed now
2026-01-06Add basic channelsNakidai
Though they don't have modes, and JOIN/PART must be able to parse comma separated list of channels
2026-01-04Add codeNakidai