~n-muench/ubuntu/oneiric/open-vm-tools/open-vm-tools.fix-836277

« back to all changes in this revision

Viewing changes to modules/linux/vsock/linux/vsockSocketWrapper.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2008-11-20 21:56:00 UTC
  • mfrom: (1.1.3 upstream) (2.2.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20081120215600-0jujiv17a2ja92xu
Tags: 2008.11.18-130226-1
* Replacing obsolete dh_clean -k with dh_prep.
* Merging upstream version 2008.11.18-130226.
* Updating debian directory for addition of pvscsi and vmxnet3 modules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
96
96
#  define ECONNREFUSED        WSAECONNREFUSED
97
97
#  define EHOSTDOWN           WSAEHOSTDOWN
98
98
#  define EHOSTUNREACH        WSAEHOSTUNREACH
 
99
#  define __ELOCALSHUTDOWN    ESHUTDOWN
 
100
#  define __EPEERSHUTDOWN     ECONNABORTED
99
101
#else
100
102
#if defined(VMKERNEL)
101
103
#  define EINTR               VMK_WAIT_INTERRUPTED
135
137
#  define ECONNREFUSED        VMK_ECONNREFUSED
136
138
#  define EHOSTDOWN           VMK_EHOSTDOWN
137
139
#  define EHOSTUNREACH        VMK_EHOSTUNREACH
 
140
#  define EPIPE               VMK_BROKEN_PIPE
 
141
#  define __ELOCALSHUTDOWN    EPIPE
 
142
#  define __EPEERSHUTDOWN     EPIPE
138
143
#endif // VMKERNEL
139
144
#endif // _WIN32
140
145