(sigil irc numerics)
(sigil irc numerics) - IRC numeric reply constants
Numeric replies as named constants. Servers send these as 3-digit commands (e.g. 001, 433, 903). Sigil's parser uppercases the command and converts it to a symbol; here we expose both forms:
RPL-WELCOME => "001" (string) IRC/RPL-WELCOME => '|001| (symbol, what the parser returns)
The string form is what you serialize with make-irc-command. The symbol form is what you compare against irc-message-command.
Categories: 001-005 registration / welcome / ISUPPORT 200-399 responses (RPL) 400-599 errors (ERR) 600-799 IRCv3 / extension space (SASL, MONITOR, CHATHISTORY, etc.)
Source: RFC 2812 + IRCv3 specifications + de-facto registry at https://defs.ircdocs.horse/defs/numerics.html
Exports
irc-numeric-nameprocedureMap a numeric reply code (string or symbol form) to its canonical constant name as a symbol. Returns #f for unknown codes.
(irc-numeric-name "001") ; => 'RPL-WELCOME
(irc-numeric-name '|001|) ; => 'RPL-WELCOMEirc-numeric->symbolprocedureConvert a numeric code string ("001") to the parser's symbol form ('|001|). Useful for eq? comparisons against irc-message-command.
RPL-WELCOMEvariable(No description)
RPL-YOURHOSTvariable(No description)
RPL-CREATEDvariable(No description)
RPL-MYINFOvariable(No description)
RPL-ISUPPORTvariable(No description)
RPL-LUSERCLIENTvariable(No description)
RPL-LUSEROPvariable(No description)
RPL-LUSERUNKNOWNvariable(No description)
RPL-LUSERCHANNELSvariable(No description)
RPL-LUSERMEvariable(No description)
RPL-ADMINMEvariable(No description)
RPL-ADMINLOC1variable(No description)
RPL-ADMINLOC2variable(No description)
RPL-ADMINEMAILvariable(No description)
RPL-AWAYvariable(No description)
RPL-USERHOSTvariable(No description)
RPL-ISONvariable(No description)
RPL-UNAWAYvariable(No description)
RPL-NOWAWAYvariable(No description)
RPL-WHOISUSERvariable(No description)
RPL-WHOISSERVERvariable(No description)
RPL-WHOISOPERATORvariable(No description)
RPL-WHOWASUSERvariable(No description)
RPL-ENDOFWHOvariable(No description)
RPL-WHOISIDLEvariable(No description)
RPL-ENDOFWHOISvariable(No description)
RPL-WHOISCHANNELSvariable(No description)
RPL-WHOISACCOUNTvariable(No description)
RPL-LISTvariable(No description)
RPL-LISTENDvariable(No description)
RPL-CHANNELMODEISvariable(No description)
RPL-NOTOPICvariable(No description)
RPL-TOPICvariable(No description)
RPL-TOPICWHOTIMEvariable(No description)
RPL-INVITINGvariable(No description)
RPL-INVITELISTvariable(No description)
RPL-ENDOFINVITELISTvariable(No description)
RPL-EXCEPTLISTvariable(No description)
RPL-ENDOFEXCEPTLISTvariable(No description)
RPL-WHOREPLYvariable(No description)
RPL-NAMREPLYvariable(No description)
RPL-ENDOFNAMESvariable(No description)
RPL-BANLISTvariable(No description)
RPL-ENDOFBANLISTvariable(No description)
RPL-MOTDSTARTvariable(No description)
RPL-MOTDvariable(No description)
RPL-ENDOFMOTDvariable(No description)
ERR-NOSUCHNICKvariable(No description)
ERR-NOSUCHSERVERvariable(No description)
ERR-NOSUCHCHANNELvariable(No description)
ERR-CANNOTSENDTOCHANvariable(No description)
ERR-TOOMANYCHANNELSvariable(No description)
ERR-WASNOSUCHNICKvariable(No description)
ERR-NORECIPIENTvariable(No description)
ERR-NOTEXTTOSENDvariable(No description)
ERR-INPUTTOOLONGvariable(No description)
ERR-UNKNOWNCOMMANDvariable(No description)
ERR-NOMOTDvariable(No description)
ERR-NOADMININFOvariable(No description)
ERR-NONICKNAMEGIVENvariable(No description)
ERR-ERRONEUSNICKNAMEvariable(No description)
ERR-NICKNAMEINUSEvariable(No description)
ERR-NICKCOLLISIONvariable(No description)
ERR-USERNOTINCHANNELvariable(No description)
ERR-NOTONCHANNELvariable(No description)
ERR-USERONCHANNELvariable(No description)
ERR-NOLOGINvariable(No description)
ERR-NOTREGISTEREDvariable(No description)
ERR-NEEDMOREPARAMSvariable(No description)
ERR-ALREADYREGISTEREDvariable(No description)
ERR-PASSWDMISMATCHvariable(No description)
ERR-YOUREBANNEDCREEPvariable(No description)
ERR-CHANNELISFULLvariable(No description)
ERR-UNKNOWNMODEvariable(No description)
ERR-INVITEONLYCHANvariable(No description)
ERR-BANNEDFROMCHANvariable(No description)
ERR-BADCHANNELKEYvariable(No description)
ERR-BADCHANMASKvariable(No description)
ERR-NOCHANMODESvariable(No description)
ERR-CHANOPRIVSNEEDEDvariable(No description)
ERR-CANTKILLSERVERvariable(No description)
ERR-NOOPERHOSTvariable(No description)
ERR-UMODEUNKNOWNFLAGvariable(No description)
ERR-USERSDONTMATCHvariable(No description)
RPL-LOGGEDINvariable(No description)
RPL-LOGGEDOUTvariable(No description)
ERR-NICKLOCKEDvariable(No description)
RPL-SASLSUCCESSvariable(No description)
ERR-SASLFAILvariable(No description)
ERR-SASLTOOLONGvariable(No description)
ERR-SASLABORTEDvariable(No description)
ERR-SASLALREADYvariable(No description)
RPL-SASLMECHSvariable(No description)
RPL-MONONLINEvariable(No description)
RPL-MONOFFLINEvariable(No description)
RPL-MONLISTvariable(No description)
RPL-ENDOFMONLISTvariable(No description)
ERR-MONLISTFULLvariable(No description)
RPL-STARTTLSvariable(No description)
ERR-STARTTLSvariable(No description)
CMD-FAILvariable(No description)
CMD-WARNvariable(No description)
CMD-NOTEvariable(No description)