packages feed

ldif-0.0.10: src/Text/LDIF/Consts.hs

module Text.LDIF.Consts where

-- | Chars necessary to be escaped when are within RDN values
specialDNChars, escapedDNChars :: [Char]
specialDNChars = [',','=','+','<','>','#',';']
escapedDNChars = ['\\', '"'] ++ specialDNChars