blob: 3a200d543787315a91d936120c5e51e6f075f1f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_LOCAL_DISCOVERY_ENDPOINT_RESOLVER_H_
#define CHROME_BROWSER_LOCAL_DISCOVERY_ENDPOINT_RESOLVER_H_
#include <stdint.h>
#include <string>
#include "base/callback.h"
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/common/local_discovery/service_discovery_client.h"
namespace net {
class HostPortPair;
class IPEndPoint;
}
namespace local_discovery {
class ServiceDiscoverySharedClient;
class EndpointResolver {
public:
using ResultCallback = base::Callback<void(const net::IPEndPoint& endpoint)>;
EndpointResolver();
~EndpointResolver();
void Start(const std::string& service_name, const ResultCallback& callback);
void Start(const net::HostPortPair& address, const ResultCallback& callback);
private:
void ServiceResolveComplete(const ResultCallback& callback,
ServiceResolver::RequestStatus result,
const ServiceDescription& description);
void DomainResolveComplete(uint16_t port,
const ResultCallback& callback,
bool success,
const net::IPAddressNumber& address_ipv4,
const net::IPAddressNumber& address_ipv6);
private:
scoped_refptr<ServiceDiscoverySharedClient> service_discovery_client_;
scoped_ptr<ServiceResolver> service_resolver_;
scoped_ptr<LocalDomainResolver> domain_resolver_;
DISALLOW_COPY_AND_ASSIGN(EndpointResolver);
};
} // namespace local_discovery
#endif // CHROME_BROWSER_LOCAL_DISCOVERY_ENDPOINT_RESOLVER_H_
|