~ubuntu-branches/ubuntu/maverick/vmware-view-open-client/maverick

« back to all changes in this revision

Viewing changes to lib/bora/include/winsockerr.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2010-06-04 17:45:04 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20100604174504-zjltuc0hdp4mv7de
Tags: 4.5.0-264434+dfsg-1
* Merging upstream version 4.5.0-264434+dfsg.
* Updating date and version header in manpage.
* Rediffing doc-pdf.patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*********************************************************
 
2
 * Copyright (C) 2010 VMware, Inc. All rights reserved.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify it
 
5
 * under the terms of the GNU Lesser General Public License as published
 
6
 * by the Free Software Foundation version 2.1 and no later version.
 
7
 *
 
8
 * This program is released with an additional exemption that
 
9
 * compiling, linking, and/or using the OpenSSL libraries with this
 
10
 * program is allowed.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful, but
 
13
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 
14
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the Lesser GNU General Public
 
15
 * License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU Lesser General Public License
 
18
 * along with this program; if not, write to the Free Software Foundation, Inc.,
 
19
 * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA.
 
20
 *
 
21
 *********************************************************/
 
22
 
 
23
#ifndef WINSOCKERR_H
 
24
#define WINSOCKERR_H
 
25
 
 
26
 
 
27
#define EWOULDBLOCK             WSAEWOULDBLOCK
 
28
#define EINPROGRESS             WSAEINPROGRESS
 
29
#define EALREADY                WSAEALREADY
 
30
#define ENOTSOCK                WSAENOTSOCK
 
31
#define EDESTADDRREQ            WSAEDESTADDRREQ
 
32
#define EMSGSIZE                WSAEMSGSIZE
 
33
#define EPROTOTYPE              WSAEPROTOTYPE
 
34
#define ENOPROTOOPT             WSAENOPROTOOPT
 
35
#define EPROTONOSUPPORT         WSAEPROTONOSUPPORT
 
36
#define ESOCKTNOSUPPORT         WSAESOCKTNOSUPPORT
 
37
#define EOPNOTSUPP              WSAEOPNOTSUPP
 
38
#define EPFNOSUPPORT            WSAEPFNOSUPPORT
 
39
#define EAFNOSUPPORT            WSAEAFNOSUPPORT
 
40
#define EADDRINUSE              WSAEADDRINUSE
 
41
#define EADDRNOTAVAIL           WSAEADDRNOTAVAIL
 
42
#define ENETDOWN                WSAENETDOWN
 
43
#define ENETUNREACH             WSAENETUNREACH
 
44
#define ENETRESET               WSAENETRESET
 
45
#define ECONNABORTED            WSAECONNABORTED
 
46
#define ECONNRESET              WSAECONNRESET
 
47
#define ENOBUFS                 WSAENOBUFS
 
48
#define EISCONN                 WSAEISCONN
 
49
#define ENOTCONN                WSAENOTCONN
 
50
#define ESHUTDOWN               WSAESHUTDOWN
 
51
#define ETOOMANYREFS            WSAETOOMANYREFS
 
52
#define ETIMEDOUT               WSAETIMEDOUT
 
53
#define ECONNREFUSED            WSAECONNREFUSED
 
54
#define ELOOP                   WSAELOOP
 
55
#define EHOSTDOWN               WSAEHOSTDOWN
 
56
#define EHOSTUNREACH            WSAEHOSTUNREACH
 
57
#define EPROCLIM                WSAEPROCLIM
 
58
#define EUSERS                  WSAEUSERS
 
59
#define EDQUOT                  WSAEDQUOT
 
60
#define ESTALE                  WSAESTALE
 
61
#define EREMOTE                 WSAEREMOTE
 
62
 
 
63
 
 
64
#endif // WINSOCKERR_H