VirtualBox

source: vbox/trunk/src/VBox/Main/src-server/HostDnsServiceResolvConf.cpp@ 53123

Last change on this file since 53123 was 53123, checked in by vboxsync, 10 years ago

Fix typo in header comment.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 KB
Line 
1/* $Id: HostDnsServiceResolvConf.cpp 53123 2014-10-22 20:46:01Z vboxsync $ */
2/** @file
3 * Base class for Host DNS & Co services.
4 */
5
6/*
7 * Copyright (C) 2014 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18/* -*- indent-tabs-mode: nil; -*- */
19#include <VBox/com/string.h>
20#include <VBox/com/ptr.h>
21
22
23#ifdef RT_OS_OS2
24# include <sys/socket.h>
25typedef int socklen_t;
26#endif
27
28#include <stdio.h>
29#include <sys/socket.h>
30#include <netinet/in.h>
31#include <arpa/inet.h>
32
33
34#include <iprt/assert.h>
35#include <iprt/err.h>
36#include <iprt/file.h>
37#include <iprt/critsect.h>
38
39#include <VBox/log.h>
40
41#include <string>
42
43#include "HostDnsService.h"
44#include "../../Devices/Network/slirp/resolv_conf_parser.h"
45
46
47struct HostDnsServiceResolvConf::Data
48{
49 Data(const char *fileName):resolvConfFilename(fileName){};
50
51 std::string resolvConfFilename;
52};
53
54const std::string& HostDnsServiceResolvConf::resolvConf() const
55{
56 return m->resolvConfFilename;
57}
58
59
60HostDnsServiceResolvConf::~HostDnsServiceResolvConf()
61{
62 if (m)
63 {
64 delete m;
65 m = NULL;
66 }
67}
68
69HRESULT HostDnsServiceResolvConf::init(const char *aResolvConfFileName)
70{
71 m = new Data(aResolvConfFileName);
72
73 HostDnsMonitor::init();
74
75 readResolvConf();
76
77 return S_OK;
78}
79
80
81HRESULT HostDnsServiceResolvConf::readResolvConf()
82{
83 struct rcp_state st;
84
85 st.rcps_flags = RCPSF_NO_STR2IPCONV;
86 int rc = rcp_parse(&st, m->resolvConfFilename.c_str());
87 if (rc == -1)
88 return S_OK;
89
90 HostDnsInformation info;
91 for (unsigned i = 0; i != st.rcps_num_nameserver; ++i)
92 {
93 AssertBreak(st.rcps_str_nameserver[i]);
94 info.servers.push_back(st.rcps_str_nameserver[i]);
95 }
96
97 if (st.rcps_domain)
98 info.domain = st.rcps_domain;
99
100 for (unsigned i = 0; i != st.rcps_num_searchlist; ++i)
101 {
102 AssertBreak(st.rcps_searchlist[i]);
103 info.searchList.push_back(st.rcps_searchlist[i]);
104 }
105 setInfo(info);
106
107 return S_OK;
108}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette