12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- # Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC")
- #
- # Permission to use, copy, modify, and/or distribute this software for any
- # purpose with or without fee is hereby granted, provided that the above
- # copyright notice and this permission notice appear in all copies.
- #
- # THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
- # REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
- # AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
- # INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
- # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- # PERFORMANCE OF THIS SOFTWARE.
- $NAMESPACE isc::asiodns
- % ASIODNS_FD_ADD_TCP adding a new TCP server by opened fd %1
- A debug message informing about installing a file descriptor as a server.
- The file descriptor number is noted.
- % ASIODNS_FD_ADD_UDP adding a new UDP server by opened fd %1
- A debug message informing about installing a file descriptor as a server.
- The file descriptor number is noted.
- % ASIODNS_FETCH_COMPLETED upstream fetch to %1(%2) has now completed
- A debug message, this records that the upstream fetch (a query made by the
- resolver on behalf of its client) to the specified address has completed.
- % ASIODNS_FETCH_STOPPED upstream fetch to %1(%2) has been stopped
- An external component has requested the halting of an upstream fetch. This
- is an allowed operation, and the message should only appear if debug is
- enabled.
- % ASIODNS_OPEN_SOCKET error %1 opening %2 socket to %3(%4)
- The asynchronous I/O code encountered an error when trying to open a socket
- of the specified protocol in order to send a message to the target address.
- The number of the system error that caused the problem is given in the
- message.
- % ASIODNS_READ_DATA error %1 reading %2 data from %3(%4)
- The asynchronous I/O code encountered an error when trying to read data from
- the specified address on the given protocol. The number of the system
- error that caused the problem is given in the message.
- % ASIODNS_READ_TIMEOUT receive timeout while waiting for data from %1(%2)
- An upstream fetch from the specified address timed out. This may happen for
- any number of reasons and is most probably a problem at the remote server
- or a problem on the network. The message will only appear if debug is
- enabled.
- % ASIODNS_SEND_DATA error %1 sending data using %2 to %3(%4)
- The asynchronous I/O code encountered an error when trying to send data to
- the specified address on the given protocol. The number of the system
- error that caused the problem is given in the message.
- % ASIODNS_UNKNOWN_ORIGIN unknown origin for ASIO error code %1 (protocol: %2, address %3)
- An internal consistency check on the origin of a message from the
- asynchronous I/O module failed. This may indicate an internal error;
- please submit a bug report.
- % ASIODNS_UNKNOWN_RESULT unknown result (%1) when IOFetch::stop() was executed for I/O to %2(%3)
- An internal error indicating that the termination method of the resolver's
- upstream fetch class was called with an unknown result code (which is
- given in the message). Please submit a bug report.
|