blob: 0f5e989a13122fca29125562aafa55665fad5042 [file] [log] [blame]
henrike@webrtc.orgf0488722014-05-13 18:00:26 +00001/*
2 * Copyright 2013 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Steve Anton10542f22019-01-11 09:11:00 -080011#ifndef RTC_BASE_ASYNC_RESOLVER_INTERFACE_H_
12#define RTC_BASE_ASYNC_RESOLVER_INTERFACE_H_
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000013
Steve Anton10542f22019-01-11 09:11:00 -080014#include "rtc_base/socket_address.h"
Artem Titove41c4332018-07-25 15:04:28 +020015#include "rtc_base/third_party/sigslot/sigslot.h"
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000016
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020017namespace rtc {
18
19// This interface defines the methods to resolve the address asynchronously.
20class AsyncResolverInterface {
21 public:
22 AsyncResolverInterface();
23 virtual ~AsyncResolverInterface();
24
Zach Stein95dfa522018-10-25 13:48:58 -070025 // Start address resolution of the hostname in |addr|.
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020026 virtual void Start(const SocketAddress& addr) = 0;
Zach Stein95dfa522018-10-25 13:48:58 -070027 // Returns true iff the address from |Start| was successfully resolved.
28 // If the address was successfully resolved, sets |addr| to a copy of the
29 // address from |Start| with the IP address set to the top most resolved
30 // address of |family| (|addr| will have both hostname and the resolved ip).
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020031 virtual bool GetResolvedAddress(int family, SocketAddress* addr) const = 0;
32 // Returns error from resolver.
33 virtual int GetError() const = 0;
34 // Delete the resolver.
35 virtual void Destroy(bool wait) = 0;
36 // Returns top most resolved IPv4 address if address is resolved successfully.
37 // Otherwise returns address set in SetAddress.
38 SocketAddress address() const {
39 SocketAddress addr;
40 GetResolvedAddress(AF_INET, &addr);
41 return addr;
42 }
43
44 // This signal is fired when address resolve process is completed.
45 sigslot::signal1<AsyncResolverInterface*> SignalDone;
46};
47
48} // namespace rtc
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000049
50#endif