blob: 04a37d6e31bc65f26ffa104a68d0d36b173e5663 (
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
|
// Copyright (c) 2011 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 NET_DNS_DNS_RESPONSE_H_
#define NET_DNS_DNS_RESPONSE_H_
#pragma once
#include "base/memory/ref_counted.h"
#include "net/base/net_api.h"
#include "net/base/net_util.h"
namespace net{
class DnsQuery;
class IOBufferWithSize;
// Represents on-the-wire DNS response as an object; allows extracting
// records.
class NET_TEST DnsResponse {
public:
// Constructs an object with an IOBuffer large enough to read
// one byte more than largest possible response, to detect malformed
// responses; |query| is a pointer to the DnsQuery for which |this|
// is supposed to be a response.
explicit DnsResponse(DnsQuery* query);
~DnsResponse();
// Internal buffer accessor into which actual bytes of response will be
// read.
IOBufferWithSize* io_buffer() { return io_buffer_.get(); }
// Parses response of size nbytes and puts address into |ip_addresses|,
// returns net_error code in case of failure.
int Parse(int nbytes, IPAddressList* ip_addresses);
private:
// The matching query; |this| is the response for |query_|. We do not
// own it, lifetime of |this| should be within the limits of lifetime of
// |query_|.
const DnsQuery* const query_;
// Buffer into which response bytes are read.
scoped_refptr<IOBufferWithSize> io_buffer_;
DISALLOW_COPY_AND_ASSIGN(DnsResponse);
};
} // namespace net
#endif // NET_DNS_DNS_RESPONSE_H_
|