src/stomp.nim
changeset 7 9c5ce539b081
parent 6 7d977f308c75
child 8 363f275588ea
equal deleted inserted replaced
6:7d977f308c75 7:9c5ce539b081
     1 # vim: set et nosta sw=4 ts=4 ft=nim : 
     1 # vim: set et nosta sw=4 ts=4 ft=nim : 
     2 #
     2 #
     3 # Copyright (c) 2016-2018, Mahlon E. Smith <mahlon@martini.nu>
     3 # Copyright (c) 2016-2019, Mahlon E. Smith <mahlon@martini.nu>
     4 # All rights reserved.
     4 # All rights reserved.
     5 # Redistribution and use in source and binary forms, with or without
     5 # Redistribution and use in source and binary forms, with or without
     6 # modification, are permitted provided that the following conditions are met:
     6 # modification, are permitted provided that the following conditions are met:
     7 #
     7 #
     8 #     * Redistributions of source code must retain the above copyright
     8 #     * Redistributions of source code must retain the above copyright
    56     os,
    56     os,
    57     times,
    57     times,
    58     uri
    58     uri
    59 
    59 
    60 const
    60 const
    61     VERSION = "0.1.1" ## The current program version.
    61     VERSION = "0.1.2" ## The current program version.
    62     NULL    = "\x00"  ## The NULL character.
    62     NULL    = "\x00"  ## The NULL character.
    63     CR      = "\r"    ## The carriage return character.
    63     CR      = "\r"    ## The carriage return character.
    64     CRLF    = "\r\n"  ## Carriage return + Line feed (EOL).
    64     CRLF    = "\r\n"  ## Carriage return + Line feed (EOL).
    65 
    65 
    66 
    66