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

Side by Side Diff: net/dns/record_parsed.h

Issue 15733008: Multicast DNS implementation (initial) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mdns_implementation2
Patch Set: Created 7 years, 6 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
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 #ifndef NET_DNS_RECORD_PARSED_H_ 5 #ifndef NET_DNS_RECORD_PARSED_H_
6 #define NET_DNS_RECORD_PARSED_H_ 6 #define NET_DNS_RECORD_PARSED_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "base/time.h" 11 #include "base/time.h"
12 #include "net/base/net_export.h" 12 #include "net/base/net_export.h"
13 13
14 namespace net { 14 namespace net {
15 15
16 class DnsRecordParser; 16 class DnsRecordParser;
17 class RecordRdata; 17 class RecordRdata;
18 18
19 // Parsed record. This is a form of DnsResourceRecord where the rdata section 19 // Parsed record. This is a form of DnsResourceRecord where the rdata section
20 // has been parsed into a data structure. 20 // has been parsed into a data structure.
21 class NET_EXPORT_PRIVATE RecordParsed { 21 class NET_EXPORT_PRIVATE RecordParsed {
22 public: 22 public:
23 virtual ~RecordParsed(); 23 virtual ~RecordParsed();
24 24
25 // All records are inherently immutable. Return a const pointer. 25 // All records are inherently immutable. Return a const pointer.
26 static scoped_ptr<const RecordParsed> CreateFrom(DnsRecordParser* parser, 26 static scoped_ptr<const RecordParsed> CreateFrom(DnsRecordParser* parser,
27 base::Time time_created); 27 base::Time time_created);
28 scoped_ptr<const RecordParsed> Clone() const;
szym 2013/06/10 21:58:29 How did this make its way back into this CL? It se
Noam Samuel 2013/06/11 20:35:03 Removed.
28 29
29 const std::string& name() const { return name_; } 30 const std::string& name() const { return name_; }
30 uint16 type() const { return type_; } 31 uint16 type() const { return type_; }
31 uint16 klass() const { return klass_; } 32 uint16 klass() const { return klass_; }
32 uint32 ttl() const { return ttl_; } 33 uint32 ttl() const { return ttl_; }
33 34
34 base::Time time_created() const { return time_created_; } 35 base::Time time_created() const { return time_created_; }
35 36
36 template <class T> const T* rdata() const { 37 template <class T> const T* rdata() const {
37 if (T::kType != type_) 38 if (T::kType != type_)
38 return NULL; 39 return NULL;
39 return static_cast<const T*>(rdata_.get()); 40 return static_cast<const T*>(rdata_.get());
40 } 41 }
41 42
42 // Check if two records have the same data. Ignores time_created and ttl. 43 // Check if two records have the same data. Ignores time_created and ttl.
43 // If |is_mdns| is true, ignore the top bit of the class 44 // If |is_mdns| is true, ignore the top bit of the class
44 // (the cache flush bit). 45 // (the cache flush bit).
45 bool IsEqual(const RecordParsed* other, bool is_mdns) const; 46 bool IsEqual(const RecordParsed* other, bool is_mdns) const;
46 47
47 private: 48 private:
48 RecordParsed(const std::string& name, uint16 type, uint16 klass, 49 RecordParsed(const std::string& name, uint16 type, uint16 klass,
49 uint32 ttl, scoped_ptr<const RecordRdata> rdata, 50 uint32 ttl, scoped_ptr<const RecordRdata> rdata,
50 base::Time time_created); 51 base::Time time_created);
51 52
52 std::string name_; // in dotted form 53 const std::string name_; // in dotted form
53 const uint16 type_; 54 const uint16 type_;
54 const uint16 klass_; 55 const uint16 klass_;
55 const uint32 ttl_; 56 const uint32 ttl_;
56 57
57 const scoped_ptr<const RecordRdata> rdata_; 58 const scoped_ptr<const RecordRdata> rdata_;
58 59
59 const base::Time time_created_; 60 const base::Time time_created_;
60 }; 61 };
61 62
62 } // namespace net 63 } // namespace net
63 64
64 #endif // NET_DNS_RECORD_PARSED_H_ 65 #endif // NET_DNS_RECORD_PARSED_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698