/usr/include/net6/error.hpp is in libnet6-1.3-dev 1:1.3.14-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | /* net6 - Library providing IPv4/IPv6 network access
* Copyright (C) 2005 Armin Burgmeier / 0x539 dev group
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef _NET6_ERROR_HPP_
#define _NET6_ERROR_HPP_
#include <stdexcept>
namespace net6
{
/** Login error.
*/
namespace login
{
/** Type for login errors.
*/
typedef unsigned int error;
/** A client tried to login with an invalid name, such as "".
*/
extern const error ERROR_NAME_INVALID;
/** The name a client wants to have is already in use.
*/
extern const error ERROR_NAME_IN_USE;
/** Maximum value of error values. Values above this may be used to
* provide own login errors.
*/
extern const error ERROR_MAX;
/** Returns a string describing the login error.
*/
std::string errstring(error err);
}
/** Common net6 error reporting class for low-level system errors.
*/
class error : public std::runtime_error
{
public:
// TODO: Multiple error classes, one for each domain. This would allow
// to use system-given error messages (strerror, gai_strerror, etc).
/** Error domain. Used by the error class to translate system
* dependant error values to net6 error codes.
*/
enum domain {
SYSTEM, // WSAGetLastError or errno
GETADDRINFO, // getaddrinfo
GETHOSTBYNAME, // gethostbyname
GNUTLS // gnutls functions
};
/** Taken from Winsock error code documentation and slightly renamed.
*/
enum code {
INTERRUPTED, // Interrupted function call
ACCESS_DENIED, // Access denied
BAD_ADDRESS, // Bad address
INVALID_ARGUMENT, // Invalid argument
TOO_MANY_FILES, // Too many open files
WOULD_BLOCK, // Resource temporariliy unavailable
OPERATION_IN_PROGRESS, // Operation already in progress
// OPERATION_ALREADY, // Operation already in progress
NOT_SOCKET, // Socket operation on non-socket
DESTINATION_ADDRESS_REQUIRED, // Destination address required
MESSAGE_TOO_LONG, // Message too long
WRONG_PROTOCOL_TYPE, // Wrong protocol type for socket
BAD_PROTOCOL_OPTION, // Bad protocol option
PROTOCOL_NOT_SUPPORTED, // Protocol not supported
SOCKET_NOT_SUPPORTED, // Socket type not supported
OPERATION_NOT_SUPPORTED, // Operation not supported
PROTOCOL_FAMILY_NOT_SUPPORTED, // Protocol family not supported
ADDRESS_FAMILY_NOT_SUPPORTED, // Address family not supported
ADDRESS_IN_USE, // Address is already in use
ADDRESS_UNAVAILABLE, // Cannot assign requested address
NETWORK_DOWN, // Network is down
NETWORK_UNREACHABLE, // Network is unreachable
NETWORK_RESET, // Network dropped connection on reset
CONNECTION_ABORTED, // Software caused connection abort
CONNECTION_RESET, // Connection reset by peer
NO_BUFFER_SPACE, // No buffer space available
SOCKET_IS_CONNECTED, // Socket is already connected
SOCKET_NOT_CONNECTED, // Socket is not connected
SOCKET_SHUTDOWN, // Cannot send after socket shutdown
CONNECTION_TIMEOUT, // Connection timed out
CONNECTION_REFUSED, // Connection refused
HOST_DOWN, // Host is down
HOST_UNREACHABLE, // No route to host
TOO_MANY_PROCESSES, // Too many processes
SYSTEM_NOT_READY, // Network subsystem is unavailable
VERSION_NOT_SUPPORTED, // Winsock.dll version out of range
NOT_INITIALISED, // Successful WSAStartup not yet performed
DISCONNECTED, // Graceful shutdown in progress
TYPE_NOT_FOUND, // Class type not found
HOSTNAME_NOT_FOUND, // Host not found
TEMPORARY_FAILURE, // Nonauthoritative host not found
NO_DATA_RECORD, // No data record of requested type
INVALID_HANDLE, // Specified event object handle is invalid
INVALID_PARAMETER, // One or more parameters are invalid
NO_MEMORY, // Insufficient memory is available
BROKEN_PIPE, // The connection was unexpectedly closed
NO_DEVICE, // Network device not available
// GnuTLS stuff
DECRYPTION_FAILED,
PRIME_UNACCEPTABLE,
ENCRYPTION_FAILED,
GOT_APPLICATION_DATA,
INSUFFICIENT_CREDENTIALS,
INVALID_REQUEST,
KEY_USAGE_VIOLATION,
MAC_VERIFY_FAILED,
NO_CERTIFICATE,
NO_TEMPORARY_DH_PARAMS,
NO_TEMPORARY_RSA_PARAMS,
PULL_ERROR,
PUSH_ERROR,
RANDOM_FAILED,
REHANDSHAKE,
UNEXPECTED_HANDSHAKE,
UNEXPECTED_PACKET,
UNEXPECTED_PACKET_LENGTH,
UNKNOWN // This is a nonrecoverable error
};
/** Generate error by an error code from a system function call.
*/
error(domain error_domain, int error_code);
/** Generate error by an error domain and the last occured error.
*/
error(domain error_domain);
/** Generate error by net6 error code.
*/
error(code error_code);
/** Returns the net6 error code of this error.
*/
code get_code() const;
private:
code errcode;
};
/** Error class that is thrown if a requested operation requires that the
* object (e.g. basic_client) is currently not connected, but it is. */
class connected_error : public std::logic_error
{
public:
connected_error(const std::string& message)
: std::logic_error(message) { }
};
/** Error class that is thrown if a requested operation requires that the
* object (e.g. basic_client) has a connection to somewhere but it has not. */
class not_connected_error : public std::logic_error
{
public:
not_connected_error(const std::string& message)
: std::logic_error(message) { }
};
}
#endif
|