Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(974)

Side by Side Diff: net/dns/dns_query.cc

Issue 9190031: DnsClient refactoring + features (timeout, suffix search, server rotation). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Delinted. Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/dns/dns_protocol.h ('k') | net/dns/dns_response.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/dns/dns_query.h" 5 #include "net/dns/dns_query.h"
6 6
7 #include <limits> 7 #include <limits>
8 8
9 #include "base/sys_byteorder.h" 9 #include "base/sys_byteorder.h"
10 #include "net/base/big_endian.h" 10 #include "net/base/big_endian.h"
11 #include "net/base/dns_util.h" 11 #include "net/base/dns_util.h"
(...skipping 10 matching lines...) Expand all
22 : qname_size_(qname.size()) { 22 : qname_size_(qname.size()) {
23 DCHECK(!DNSDomainToString(qname).empty()); 23 DCHECK(!DNSDomainToString(qname).empty());
24 // QNAME + QTYPE + QCLASS 24 // QNAME + QTYPE + QCLASS
25 size_t question_size = qname_size_ + sizeof(uint16) + sizeof(uint16); 25 size_t question_size = qname_size_ + sizeof(uint16) + sizeof(uint16);
26 io_buffer_ = new IOBufferWithSize(sizeof(dns_protocol::Header) + 26 io_buffer_ = new IOBufferWithSize(sizeof(dns_protocol::Header) +
27 question_size); 27 question_size);
28 dns_protocol::Header* header = 28 dns_protocol::Header* header =
29 reinterpret_cast<dns_protocol::Header*>(io_buffer_->data()); 29 reinterpret_cast<dns_protocol::Header*>(io_buffer_->data());
30 memset(header, 0, sizeof(dns_protocol::Header)); 30 memset(header, 0, sizeof(dns_protocol::Header));
31 header->id = htons(id); 31 header->id = htons(id);
32 header->flags[0] = 0x1; // RD bit 32 header->flags = htons(dns_protocol::kFlagRD);
33 header->qdcount = htons(1); 33 header->qdcount = htons(1);
34 34
35 // Write question section after the header. 35 // Write question section after the header.
36 BigEndianWriter writer(reinterpret_cast<char*>(header + 1), question_size); 36 BigEndianWriter writer(reinterpret_cast<char*>(header + 1), question_size);
37 writer.WriteBytes(qname.data(), qname.size()); 37 writer.WriteBytes(qname.data(), qname.size());
38 writer.WriteU16(qtype); 38 writer.WriteU16(qtype);
39 writer.WriteU16(dns_protocol::kClassIN); 39 writer.WriteU16(dns_protocol::kClassIN);
40 } 40 }
41 41
42 DnsQuery::~DnsQuery() { 42 DnsQuery::~DnsQuery() {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 qname_size_ = orig.qname_size_; 74 qname_size_ = orig.qname_size_;
75 io_buffer_ = new IOBufferWithSize(orig.io_buffer()->size()); 75 io_buffer_ = new IOBufferWithSize(orig.io_buffer()->size());
76 memcpy(io_buffer_.get()->data(), orig.io_buffer()->data(), 76 memcpy(io_buffer_.get()->data(), orig.io_buffer()->data(),
77 io_buffer_.get()->size()); 77 io_buffer_.get()->size());
78 dns_protocol::Header* header = 78 dns_protocol::Header* header =
79 reinterpret_cast<dns_protocol::Header*>(io_buffer_->data()); 79 reinterpret_cast<dns_protocol::Header*>(io_buffer_->data());
80 header->id = htons(id); 80 header->id = htons(id);
81 } 81 }
82 82
83 } // namespace net 83 } // namespace net
OLDNEW
« no previous file with comments | « net/dns/dns_protocol.h ('k') | net/dns/dns_response.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698