disconnect_error_strings.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /** BEGIN COPYRIGHT BLOCK
  2. * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
  3. * Copyright (C) 2005 Red Hat, Inc.
  4. * All rights reserved.
  5. *
  6. * License: GPL (version 3 or any later version).
  7. * See LICENSE for details.
  8. * END COPYRIGHT BLOCK **/
  9. #ifdef HAVE_CONFIG_H
  10. # include <config.h>
  11. #endif
  12. /* disconnect_error_strings.h
  13. *
  14. * Strings describing the errors used in logging the reason a connection
  15. * was closed.
  16. */
  17. #ifndef __DISCONNECT_ERROR_STRINGS_H_
  18. #define __DISCONNECT_ERROR_STRINGS_H_
  19. ER2( SLAPD_DISCONNECT_ABORT, "A1" )
  20. ER2( SLAPD_DISCONNECT_BAD_BER_TAG, "B1" )
  21. ER2( SLAPD_DISCONNECT_BER_TOO_BIG, "B2" )
  22. ER2( SLAPD_DISCONNECT_BER_PEEK, "B3" )
  23. ER2( SLAPD_DISCONNECT_BER_FLUSH, "B4" )
  24. ER2( SLAPD_DISCONNECT_IDLE_TIMEOUT, "T1" )
  25. ER2( SLAPD_DISCONNECT_REVENTS, "R1" )
  26. ER2( SLAPD_DISCONNECT_IO_TIMEOUT, "T2" )
  27. ER2( SLAPD_DISCONNECT_PLUGIN, "P1" )
  28. ER2( SLAPD_DISCONNECT_UNBIND, "U1" )
  29. ER2( SLAPD_DISCONNECT_POLL, "P2" )
  30. ER2( SLAPD_DISCONNECT_NTSSL_TIMEOUT,"T2" )
  31. ER2( SLAPD_DISCONNECT_SASL_FAIL,"S1" )
  32. #endif /* __DISCONNECT_ERROR_STRINGS_H_ */