summaryrefslogtreecommitdiff
path: root/open-vm-tools/lib/nicInfo/nicInfoInt.h
diff options
context:
space:
mode:
Diffstat (limited to 'open-vm-tools/lib/nicInfo/nicInfoInt.h')
-rw-r--r--open-vm-tools/lib/nicInfo/nicInfoInt.h68
1 files changed, 68 insertions, 0 deletions
diff --git a/open-vm-tools/lib/nicInfo/nicInfoInt.h b/open-vm-tools/lib/nicInfo/nicInfoInt.h
new file mode 100644
index 00000000..6720c861
--- /dev/null
+++ b/open-vm-tools/lib/nicInfo/nicInfoInt.h
@@ -0,0 +1,68 @@
+/*********************************************************
+ * Copyright (C) 2014-2015 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
+ * by the Free Software Foundation version 2.1 and no later version.
+ *
+ * This program 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 Lesser GNU General Public
+ * License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ *********************************************************/
+
+
+/*
+ * nicInfoInt.h --
+ *
+ * Functions used to communicate guest network information to the host.
+ *
+ */
+
+#ifndef NICINFO_INT_H
+#define NICINFO_INT_H
+
+#include "nicInfo.h"
+
+#if defined __FreeBSD__ || defined __sun__ || defined __APPLE__
+# include <sys/socket.h> // struct sockaddr
+#endif
+
+Bool GuestInfoGetFqdn(int outBufLen, char fqdn[]);
+Bool GuestInfoGetNicInfo(NicInfoV3 *nicInfo);
+
+GuestNicV3 *GuestInfoAddNicEntry(NicInfoV3 *nicInfo, // IN/OUT
+ const char macAddress[NICINFO_MAC_LEN], // IN
+ DnsConfigInfo *dnsInfo, // IN
+ WinsConfigInfo *winsInfo); // IN
+
+IpAddressEntry *GuestInfoAddIpAddress(GuestNicV3 *nic, // IN/OUT
+ const struct sockaddr *sockAddr, // IN
+ InetAddressPrefixLength pfxLen, // IN
+ const IpAddressOrigin *origin, // IN
+ const IpAddressStatus *status); // IN
+
+char *GuestInfoGetPrimaryIP(void);
+
+#if defined _WIN32
+void GuestInfoDupTypedIpAddress(TypedIpAddress *srcIp, // IN
+ TypedIpAddress *destIp); // OUT
+#endif // if defined _WIN32
+
+#if defined linux || defined _WIN32
+Bool GuestInfoGetNicInfoIfIndex(NicInfoV3 *nicInfo, // IN
+ int ifIndex, // IN
+ int *nicIfIndex); // OUT
+#endif // if defined linux || defined _WIN32
+void GuestInfoSockaddrToTypedIpAddress(const struct sockaddr *sa, // IN
+ TypedIpAddress *typedIp); // OUT
+
+GuestNicV3 *
+GuestInfoUtilFindNicByMac(const NicInfoV3 *nicInfo,
+ const char *macAddress);
+#endif