]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Change to common header file not applicable to open-vm-tools.
authorKaty Feng <fkaty@vmware.com>
Fri, 3 Feb 2023 17:41:08 +0000 (09:41 -0800)
committerKaty Feng <fkaty@vmware.com>
Fri, 3 Feb 2023 17:41:08 +0000 (09:41 -0800)
open-vm-tools/lib/include/asyncsocket.h

index 768d4ed707b76f2dbe0784a2eb0bdb463178f4fe..09947002ec6e08e83abda5aada0c48907592b834 100644 (file)
@@ -1,5 +1,5 @@
 /*********************************************************
- * Copyright (C) 2003-2022 VMware, Inc. All rights reserved.
+ * Copyright (C) 2003-2023 VMware, Inc. All rights reserved.
  *
  * This program is free software; you can redistribute it and/or modify it
  * under the terms of the GNU Lesser General Public License as published
@@ -103,6 +103,7 @@ extern "C" {
 #define ASOCK_EHOSTUNREACH      WSAEHOSTUNREACH
 #define ASOCK_ETIMEDOUT         WSAETIMEDOUT
 #define ASOCK_ECONNREFUSED      WSAECONNREFUSED
+#define ASOCK_EACCES            WSAEACCES
 #else
 #define ASOCK_ENOTCONN          ENOTCONN
 #define ASOCK_ENOTSOCK          ENOTSOCK
@@ -111,11 +112,12 @@ extern "C" {
 #define ASOCK_EWOULDBLOCK       EWOULDBLOCK
 #define ASOCK_ENETUNREACH       ENETUNREACH
 #define ASOCK_ECONNRESET        ECONNRESET
-#define ASOCK_ETIMEDOUT         ETIMEDOUT
-#define ASOCK_ECONNREFUSED      ECONNREFUSED
 #define ASOCK_ECONNABORTED      ECONNABORTED
 #define ASOCK_EPIPE             EPIPE
 #define ASOCK_EHOSTUNREACH      EHOSTUNREACH
+#define ASOCK_ETIMEDOUT         ETIMEDOUT
+#define ASOCK_ECONNREFUSED      ECONNREFUSED
+#define ASOCK_EACCES            EACCES
 #endif
 
 /*