msgq_messages.mes 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. # Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC")
  2. #
  3. # Permission to use, copy, modify, and/or distribute this software for any
  4. # purpose with or without fee is hereby granted, provided that the above
  5. # copyright notice and this permission notice appear in all copies.
  6. #
  7. # THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
  8. # REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  9. # AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
  10. # INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  11. # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  12. # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  13. # PERFORMANCE OF THIS SOFTWARE.
  14. # No namespace declaration - these constants go in the global namespace
  15. # of the ddns messages python module.
  16. # When you add a message to this file, it is a good idea to run
  17. # <topsrcdir>/tools/reorder_message_file.py to make sure the
  18. # messages are in the correct order.
  19. % MSGQ_CFGMGR_SUBSCRIBED The config manager subscribed to message queue
  20. This is a debug message. The message queue has little bit of special handling
  21. for the configuration manager. This special handling is happening now.
  22. % MSGQ_COMMAND Running command %1 with arguments %2
  23. Debug message. The message queue received a command and it is running it.
  24. % MSGQ_COMMAND_UNKNOWN Unknown command '%1'
  25. The message queue received a command from other module, but it doesn't
  26. recognize it. This is probably either a coding error or inconsistency between
  27. the message queue version and version of the module.
  28. % MSGQ_CONFIG_DATA Received configuration update for the msgq: %1
  29. Debug message. The message queue received a configuration update, handling it.
  30. % MSGQ_HDR_DECODE_ERR Error decoding header received from socket %1: %2
  31. The socket with mentioned file descriptor sent a packet. However, it was not
  32. possible to decode the routing header of the packet. The packet is ignored.
  33. This may be caused by a programmer error (one of the components sending invalid
  34. data) or possibly by incompatible version of msgq and the component (but that's
  35. unlikely, as the protocol is not changed often).
  36. % MSGQ_LISTENER_FAILED Failed to initialize listener on socket file '%1': %2
  37. The message queue daemon tried to listen on a file socket (the path is in the
  38. message), but it failed. The error from the operating system is logged.
  39. % MSGQ_LISTENER_SETUP Starting to listen on socket file '%1'
  40. Debug message. The listener is trying to open a listening socket.
  41. % MSGQ_LISTENER_STARTED Successfully started to listen
  42. Debug message. The message queue successfully opened a listening socket and
  43. waits for incoming connections.
  44. % MSGQ_POLL_ERR Error while polling for events: %1
  45. A low-level error happened when waiting for events, the error is logged. The
  46. reason for this varies, but it usually means the system is short on some
  47. resources.
  48. % MSGQ_POLL_UNKNOWN_EVENT Got an unknown event from the poller for fd %1: %2
  49. An unknown event got out from the poll() system call. This should generally not
  50. happen and it is either a programmer error or OS bug. The event is ignored. The
  51. number noted as the event is the raw encoded value, which might be useful to
  52. the authors when figuring the problem out.
  53. % MSGQ_READ_UNKNOWN_FD Got read on strange socket %1
  54. The OS reported a file descriptor is ready to read. But the daemon doesn't know
  55. the mentioned file descriptor, which is either a programmer error or OS bug.
  56. The read event is ignored.
  57. % MSGQ_RECV_ERR Error reading from socket %1: %2
  58. There was a low-level error when reading from a socket. The error is logged and
  59. the corresponding socket is dropped.
  60. % MSGQ_RECV_HDR Received header: %1
  61. Debug message. This message includes the whole routing header of a packet.
  62. % MSGQ_INVALID_CMD Received invalid command: %1
  63. An unknown command listed in the log has been received. It is ignored. This
  64. indicates either a programmer error (eg. a typo in the command name) or
  65. incompatible version of a module and message queue daemon.
  66. % MSGQ_SEND_ERR Error while sending to socket %1: %2
  67. There was a low-level error when sending data to a socket. The error is logged
  68. and the corresponding socket is dropped.
  69. % MSGQ_SHUTDOWN Stopping Msgq
  70. Debug message. The message queue is shutting down.
  71. % MSGQ_SOCK_CLOSE Closing socket fd %1
  72. Debug message. Closing the mentioned socket.
  73. % MSGQ_START Msgq version %1 starting
  74. Debug message. The message queue is starting up.
  75. % MSGQ_START_FAIL Error during startup: %1
  76. There was an error during early startup of the daemon. More concrete error is
  77. in the log. The daemon terminates as a result.
  78. % MSGQ_SUBS_APPEND_TARGET Appending to existing target for subscription to group '%1' for instance '%2'
  79. Debug message. Creating a new subscription by appending it to already existing
  80. data structure.
  81. % MSGQ_SUBS_NEW_TARGET Creating new target for subscription to group '%1' for instance '%2'
  82. Debug message. Creating a new subscription. Also creating a new data structure
  83. to hold it.