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 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638
|
/*
* Original: tclPosixStr.c --
*
* This file contains procedures that generate strings
* corresponding to various POSIX-related codes, such
* as errno and signals.
*
* Copyright (c) 1991-1994 The Regents of the University of California.
* Copyright (c) 1994-1996 Sun Microsystems, Inc.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* SCCS: @(#) tclPosixStr.c 1.32 96/10/10 10:09:42
*/
/* Copy of erl_posix_str.c */
#ifdef __WIN32__
#include "esock_winsock.h"
#endif
#include <stdio.h>
#include <errno.h>
#include "esock_posix_str.h"
/*
*----------------------------------------------------------------------
*
* esock_posix_str --
*
* Return a textual identifier for the given errno value.
*
* Results:
* This procedure returns a machine-readable textual identifier
* that corresponds to the current errno value (e.g. "eperm").
* The identifier is the same as the #define name in errno.h,
* except that it is in lowercase.
*
*----------------------------------------------------------------------
*/
static char errstrbuf[32];
char *esock_posix_str(int error)
{
switch (error) {
#ifdef E2BIG
case E2BIG: return "e2big";
#endif
#ifdef EACCES
case EACCES: return "eacces";
#endif
#ifdef EADDRINUSE
case EADDRINUSE: return "eaddrinuse";
#endif
#ifdef EADDRNOTAVAIL
case EADDRNOTAVAIL: return "eaddrnotavail";
#endif
#ifdef EADV
case EADV: return "eadv";
#endif
#ifdef EAFNOSUPPORT
case EAFNOSUPPORT: return "eafnosupport";
#endif
#ifdef EAGAIN
case EAGAIN: return "eagain";
#endif
#ifdef EALIGN
case EALIGN: return "ealign";
#endif
#if defined(EALREADY) && (!defined(EBUSY) || (EALREADY != EBUSY ))
case EALREADY: return "ealready";
#endif
#ifdef EBADE
case EBADE: return "ebade";
#endif
#ifdef EBADF
case EBADF: return "ebadf";
#endif
#ifdef EBADFD
case EBADFD: return "ebadfd";
#endif
#ifdef EBADMSG
case EBADMSG: return "ebadmsg";
#endif
#ifdef EBADR
case EBADR: return "ebadr";
#endif
#ifdef EBADRPC
case EBADRPC: return "ebadrpc";
#endif
#ifdef EBADRQC
case EBADRQC: return "ebadrqc";
#endif
#ifdef EBADSLT
case EBADSLT: return "ebadslt";
#endif
#ifdef EBFONT
case EBFONT: return "ebfont";
#endif
#ifdef EBUSY
case EBUSY: return "ebusy";
#endif
#ifdef ECHILD
case ECHILD: return "echild";
#endif
#ifdef ECHRNG
case ECHRNG: return "echrng";
#endif
#ifdef ECOMM
case ECOMM: return "ecomm";
#endif
#ifdef ECONNABORTED
case ECONNABORTED: return "econnaborted";
#endif
#ifdef ECONNREFUSED
case ECONNREFUSED: return "econnrefused";
#endif
#ifdef ECONNRESET
case ECONNRESET: return "econnreset";
#endif
#if defined(EDEADLK) && (!defined(EWOULDBLOCK) || (EDEADLK != EWOULDBLOCK))
case EDEADLK: return "edeadlk";
#endif
#if defined(EDEADLOCK) && (!defined(EDEADLK) || (EDEADLOCK != EDEADLK))
case EDEADLOCK: return "edeadlock";
#endif
#ifdef EDESTADDRREQ
case EDESTADDRREQ: return "edestaddrreq";
#endif
#ifdef EDIRTY
case EDIRTY: return "edirty";
#endif
#ifdef EDOM
case EDOM: return "edom";
#endif
#ifdef EDOTDOT
case EDOTDOT: return "edotdot";
#endif
#ifdef EDQUOT
case EDQUOT: return "edquot";
#endif
#ifdef EDUPPKG
case EDUPPKG: return "eduppkg";
#endif
#ifdef EEXIST
case EEXIST: return "eexist";
#endif
#ifdef EFAULT
case EFAULT: return "efault";
#endif
#ifdef EFBIG
case EFBIG: return "efbig";
#endif
#ifdef EHOSTDOWN
case EHOSTDOWN: return "ehostdown";
#endif
#ifdef EHOSTUNREACH
case EHOSTUNREACH: return "ehostunreach";
#endif
#if defined(EIDRM) && (!defined(EINPROGRESS) || (EIDRM != EINPROGRESS))
case EIDRM: return "eidrm";
#endif
#ifdef EINIT
case EINIT: return "einit";
#endif
#ifdef EINPROGRESS
case EINPROGRESS: return "einprogress";
#endif
#ifdef EINTR
case EINTR: return "eintr";
#endif
#ifdef EINVAL
case EINVAL: return "einval";
#endif
#ifdef EIO
case EIO: return "eio";
#endif
#ifdef EISCONN
case EISCONN: return "eisconn";
#endif
#ifdef EISDIR
case EISDIR: return "eisdir";
#endif
#ifdef EISNAME
case EISNAM: return "eisnam";
#endif
#ifdef ELBIN
case ELBIN: return "elbin";
#endif
#ifdef EL2HLT
case EL2HLT: return "el2hlt";
#endif
#ifdef EL2NSYNC
case EL2NSYNC: return "el2nsync";
#endif
#ifdef EL3HLT
case EL3HLT: return "el3hlt";
#endif
#ifdef EL3RST
case EL3RST: return "el3rst";
#endif
#ifdef ELIBACC
case ELIBACC: return "elibacc";
#endif
#ifdef ELIBBAD
case ELIBBAD: return "elibbad";
#endif
#ifdef ELIBEXEC
case ELIBEXEC: return "elibexec";
#endif
#ifdef ELIBMAX
case ELIBMAX: return "elibmax";
#endif
#ifdef ELIBSCN
case ELIBSCN: return "elibscn";
#endif
#ifdef ELNRNG
case ELNRNG: return "elnrng";
#endif
#if defined(ELOOP) && (!defined(ENOENT) || (ELOOP != ENOENT))
case ELOOP: return "eloop";
#endif
#ifdef EMFILE
case EMFILE: return "emfile";
#endif
#ifdef EMLINK
case EMLINK: return "emlink";
#endif
#ifdef EMSGSIZE
case EMSGSIZE: return "emsgsize";
#endif
#ifdef EMULTIHOP
case EMULTIHOP: return "emultihop";
#endif
#ifdef ENAMETOOLONG
case ENAMETOOLONG: return "enametoolong";
#endif
#ifdef ENAVAIL
case ENAVAIL: return "enavail";
#endif
#ifdef ENET
case ENET: return "enet";
#endif
#ifdef ENETDOWN
case ENETDOWN: return "enetdown";
#endif
#ifdef ENETRESET
case ENETRESET: return "enetreset";
#endif
#ifdef ENETUNREACH
case ENETUNREACH: return "enetunreach";
#endif
#ifdef ENFILE
case ENFILE: return "enfile";
#endif
#ifdef ENOANO
case ENOANO: return "enoano";
#endif
#if defined(ENOBUFS) && (!defined(ENOSR) || (ENOBUFS != ENOSR))
case ENOBUFS: return "enobufs";
#endif
#ifdef ENOCSI
case ENOCSI: return "enocsi";
#endif
#if defined(ENODATA) && (!defined(ECONNREFUSED) || (ENODATA != ECONNREFUSED))
case ENODATA: return "enodata";
#endif
#ifdef ENODEV
case ENODEV: return "enodev";
#endif
#ifdef ENOENT
case ENOENT: return "enoent";
#endif
#ifdef ENOEXEC
case ENOEXEC: return "enoexec";
#endif
#ifdef ENOLCK
case ENOLCK: return "enolck";
#endif
#ifdef ENOLINK
case ENOLINK: return "enolink";
#endif
#ifdef ENOMEM
case ENOMEM: return "enomem";
#endif
#ifdef ENOMSG
case ENOMSG: return "enomsg";
#endif
#ifdef ENONET
case ENONET: return "enonet";
#endif
#ifdef ENOPKG
case ENOPKG: return "enopkg";
#endif
#ifdef ENOPROTOOPT
case ENOPROTOOPT: return "enoprotoopt";
#endif
#ifdef ENOSPC
case ENOSPC: return "enospc";
#endif
#if defined(ENOSR) && (!defined(ENAMETOOLONG) || (ENAMETOOLONG != ENOSR))
case ENOSR: return "enosr";
#endif
#if defined(ENOSTR) && (!defined(ENOTTY) || (ENOTTY != ENOSTR))
case ENOSTR: return "enostr";
#endif
#ifdef ENOSYM
case ENOSYM: return "enosym";
#endif
#ifdef ENOSYS
case ENOSYS: return "enosys";
#endif
#ifdef ENOTBLK
case ENOTBLK: return "enotblk";
#endif
#ifdef ENOTCONN
case ENOTCONN: return "enotconn";
#endif
#ifdef ENOTDIR
case ENOTDIR: return "enotdir";
#endif
#if defined(ENOTEMPTY) && (!defined(EEXIST) || (ENOTEMPTY != EEXIST))
case ENOTEMPTY: return "enotempty";
#endif
#ifdef ENOTNAM
case ENOTNAM: return "enotnam";
#endif
#ifdef ENOTSOCK
case ENOTSOCK: return "enotsock";
#endif
#ifdef ENOTSUP
case ENOTSUP: return "enotsup";
#endif
#ifdef ENOTTY
case ENOTTY: return "enotty";
#endif
#ifdef ENOTUNIQ
case ENOTUNIQ: return "enotuniq";
#endif
#ifdef ENXIO
case ENXIO: return "enxio";
#endif
#if defined(EOPNOTSUPP) && (!defined(ENOTSUP) || EOPNOTSUPP != ENOTSUP)
case EOPNOTSUPP: return "eopnotsupp";
#endif
#ifdef EPERM
case EPERM: return "eperm";
#endif
#if defined(EPFNOSUPPORT) && (!defined(ENOLCK) || (ENOLCK != EPFNOSUPPORT))
case EPFNOSUPPORT: return "epfnosupport";
#endif
#ifdef EPIPE
case EPIPE: return "epipe";
#endif
#ifdef EPROCLIM
case EPROCLIM: return "eproclim";
#endif
#ifdef EPROCUNAVAIL
case EPROCUNAVAIL: return "eprocunavail";
#endif
#ifdef EPROGMISMATCH
case EPROGMISMATCH: return "eprogmismatch";
#endif
#ifdef EPROGUNAVAIL
case EPROGUNAVAIL: return "eprogunavail";
#endif
#ifdef EPROTO
case EPROTO: return "eproto";
#endif
#ifdef EPROTONOSUPPORT
case EPROTONOSUPPORT: return "eprotonosupport";
#endif
#ifdef EPROTOTYPE
case EPROTOTYPE: return "eprototype";
#endif
#ifdef ERANGE
case ERANGE: return "erange";
#endif
#if defined(EREFUSED) && (!defined(ECONNREFUSED) || (EREFUSED != ECONNREFUSED))
case EREFUSED: return "erefused";
#endif
#ifdef EREMCHG
case EREMCHG: return "eremchg";
#endif
#ifdef EREMDEV
case EREMDEV: return "eremdev";
#endif
#ifdef EREMOTE
case EREMOTE: return "eremote";
#endif
#ifdef EREMOTEIO
case EREMOTEIO: return "eremoteio";
#endif
#ifdef EREMOTERELEASE
case EREMOTERELEASE: return "eremoterelease";
#endif
#ifdef EROFS
case EROFS: return "erofs";
#endif
#ifdef ERPCMISMATCH
case ERPCMISMATCH: return "erpcmismatch";
#endif
#ifdef ERREMOTE
case ERREMOTE: return "erremote";
#endif
#ifdef ESHUTDOWN
case ESHUTDOWN: return "eshutdown";
#endif
#ifdef ESOCKTNOSUPPORT
case ESOCKTNOSUPPORT: return "esocktnosupport";
#endif
#ifdef ESPIPE
case ESPIPE: return "espipe";
#endif
#ifdef ESRCH
case ESRCH: return "esrch";
#endif
#ifdef ESRMNT
case ESRMNT: return "esrmnt";
#endif
#ifdef ESTALE
case ESTALE: return "estale";
#endif
#ifdef ESUCCESS
case ESUCCESS: return "esuccess";
#endif
#if defined(ETIME) && (!defined(ELOOP) || (ETIME != ELOOP))
case ETIME: return "etime";
#endif
#if defined(ETIMEDOUT) && (!defined(ENOSTR) || (ETIMEDOUT != ENOSTR))
case ETIMEDOUT: return "etimedout";
#endif
#ifdef ETOOMANYREFS
case ETOOMANYREFS: return "etoomanyrefs";
#endif
#ifdef ETXTBSY
case ETXTBSY: return "etxtbsy";
#endif
#ifdef EUCLEAN
case EUCLEAN: return "euclean";
#endif
#ifdef EUNATCH
case EUNATCH: return "eunatch";
#endif
#ifdef EUSERS
case EUSERS: return "eusers";
#endif
#ifdef EVERSION
case EVERSION: return "eversion";
#endif
#if defined(EWOULDBLOCK) && (!defined(EAGAIN) || (EWOULDBLOCK != EAGAIN))
case EWOULDBLOCK: return "ewouldblock";
#endif
#ifdef EXDEV
case EXDEV: return "exdev";
#endif
#ifdef EXFULL
case EXFULL: return "exfull";
#endif
#ifdef WSAEINTR
case WSAEINTR: return "eintr";
#endif
#ifdef WSAEBADF
case WSAEBADF: return "ebadf";
#endif
#ifdef WSAEACCES
case WSAEACCES: return "eacces";
#endif
#ifdef WSAEFAULT
case WSAEFAULT: return "efault";
#endif
#ifdef WSAEINVAL
case WSAEINVAL: return "einval";
#endif
#ifdef WSAEMFILE
case WSAEMFILE: return "emfile";
#endif
#ifdef WSAEWOULDBLOCK
case WSAEWOULDBLOCK: return "ewouldblock";
#endif
#ifdef WSAEINPROGRESS
case WSAEINPROGRESS: return "einprogress";
#endif
#ifdef WSAEALREADY
case WSAEALREADY: return "ealready";
#endif
#ifdef WSAENOTSOCK
case WSAENOTSOCK: return "enotsock";
#endif
#ifdef WSAEDESTADDRREQ
case WSAEDESTADDRREQ: return "edestaddrreq";
#endif
#ifdef WSAEMSGSIZE
case WSAEMSGSIZE: return "emsgsize";
#endif
#ifdef WSAEPROTOTYPE
case WSAEPROTOTYPE: return "eprototype";
#endif
#ifdef WSAENOPROTOOPT
case WSAENOPROTOOPT: return "enoprotoopt";
#endif
#ifdef WSAEPROTONOSUPPORT
case WSAEPROTONOSUPPORT: return "eprotonosupport";
#endif
#ifdef WSAESOCKTNOSUPPORT
case WSAESOCKTNOSUPPORT: return "esocktnosupport";
#endif
#ifdef WSAEOPNOTSUPP
case WSAEOPNOTSUPP: return "eopnotsupp";
#endif
#ifdef WSAEPFNOSUPPORT
case WSAEPFNOSUPPORT: return "epfnosupport";
#endif
#ifdef WSAEAFNOSUPPORT
case WSAEAFNOSUPPORT: return "eafnosupport";
#endif
#ifdef WSAEADDRINUSE
case WSAEADDRINUSE: return "eaddrinuse";
#endif
#ifdef WSAEADDRNOTAVAIL
case WSAEADDRNOTAVAIL: return "eaddrnotavail";
#endif
#ifdef WSAENETDOWN
case WSAENETDOWN: return "enetdown";
#endif
#ifdef WSAENETUNREACH
case WSAENETUNREACH: return "enetunreach";
#endif
#ifdef WSAENETRESET
case WSAENETRESET: return "enetreset";
#endif
#ifdef WSAECONNABORTED
case WSAECONNABORTED: return "econnaborted";
#endif
#ifdef WSAECONNRESET
case WSAECONNRESET: return "econnreset";
#endif
#ifdef WSAENOBUFS
case WSAENOBUFS: return "enobufs";
#endif
#ifdef WSAEISCONN
case WSAEISCONN: return "eisconn";
#endif
#ifdef WSAENOTCONN
case WSAENOTCONN: return "enotconn";
#endif
#ifdef WSAESHUTDOWN
case WSAESHUTDOWN: return "eshutdown";
#endif
#ifdef WSAETOOMANYREFS
case WSAETOOMANYREFS: return "etoomanyrefs";
#endif
#ifdef WSAETIMEDOUT
case WSAETIMEDOUT: return "etimedout";
#endif
#ifdef WSAECONNREFUSED
case WSAECONNREFUSED: return "econnrefused";
#endif
#ifdef WSAELOOP
case WSAELOOP: return "eloop";
#endif
#ifdef WSAENAMETOOLONG
case WSAENAMETOOLONG: return "enametoolong";
#endif
#ifdef WSAEHOSTDOWN
case WSAEHOSTDOWN: return "ehostdown";
#endif
#ifdef WSAEHOSTUNREACH
case WSAEHOSTUNREACH: return "ehostunreach";
#endif
#ifdef WSAENOTEMPTY
case WSAENOTEMPTY: return "enotempty";
#endif
#ifdef WSAEPROCLIM
case WSAEPROCLIM: return "eproclim";
#endif
#ifdef WSAEUSERS
case WSAEUSERS: return "eusers";
#endif
#ifdef WSAEDQUOT
case WSAEDQUOT: return "edquot";
#endif
#ifdef WSAESTALE
case WSAESTALE: return "estale";
#endif
#ifdef WSAEREMOTE
case WSAEREMOTE: return "eremote";
#endif
#ifdef WSASYSNOTREADY
case WSASYSNOTREADY: return "sysnotready";
#endif
#ifdef WSAVERNOTSUPPORTED
case WSAVERNOTSUPPORTED: return "vernotsupported";
#endif
#ifdef WSANOTINITIALISED
case WSANOTINITIALISED: return "notinitialised";
#endif
#ifdef WSAEDISCON
case WSAEDISCON: return "ediscon";
#endif
#ifdef WSAENOMORE
case WSAENOMORE: return "enomore";
#endif
#ifdef WSAECANCELLED
case WSAECANCELLED: return "ecancelled";
#endif
#ifdef WSAEINVALIDPROCTABLE
case WSAEINVALIDPROCTABLE: return "einvalidproctable";
#endif
#ifdef WSAEINVALIDPROVIDER
case WSAEINVALIDPROVIDER: return "einvalidprovider";
#endif
#ifdef WSAEPROVIDERFAILEDINIT
case WSAEPROVIDERFAILEDINIT: return "eproviderfailedinit";
#endif
#ifdef WSASYSCALLFAILURE
case WSASYSCALLFAILURE: return "syscallfailure";
#endif
#ifdef WSASERVICE_NOT_FOUND
case WSASERVICE_NOT_FOUND: return "service_not_found";
#endif
#ifdef WSATYPE_NOT_FOUND
case WSATYPE_NOT_FOUND: return "type_not_found";
#endif
#ifdef WSA_E_NO_MORE
case WSA_E_NO_MORE: return "e_no_more";
#endif
#ifdef WSA_E_CANCELLED
case WSA_E_CANCELLED: return "e_cancelled";
#endif
default:
sprintf(errstrbuf, "unknown:%d", error);
return errstrbuf;
}
}
|