Chromium Code Reviews| Index: cloud_print/gcp20/prototype/dns_sd_server.h |
| diff --git a/cloud_print/gcp20/prototype/dns_sd_server.h b/cloud_print/gcp20/prototype/dns_sd_server.h |
| index 9c8ed96b7d33d62790d7797dc061f5b963911f2f..27728e809f8d2a1c0b1c1eb5d6b450401cd21c42 100644 |
| --- a/cloud_print/gcp20/prototype/dns_sd_server.h |
| +++ b/cloud_print/gcp20/prototype/dns_sd_server.h |
| @@ -2,27 +2,33 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#ifndef GCP20_PROTOTYPE_DNS_SD_H_ |
| -#define GCP20_PROTOTYPE_DNS_SD_H_ |
| +#ifndef CLOUD_PRINT_GCP20_PROTOTYPE_DNS_SD_SERVER_H_ |
| +#define CLOUD_PRINT_GCP20_PROTOTYPE_DNS_SD_SERVER_H_ |
| +#include <string> |
| #include <vector> |
| +#include "cloud_print/gcp20/prototype/dns_packet_parser.h" |
| +#include "cloud_print/gcp20/prototype/dns_response_builder.h" |
| +#include "cloud_print/gcp20/prototype/service_parameters.h" |
| #include "net/dns/dns_protocol.h" |
| #include "net/udp/udp_socket.h" |
| // Class for sending multicast announcements, receiving queries and answering on |
| -// them. Client should call |ProccessMessages| periodically to make server work. |
| +// them. |
| +// TODO(maksymb): Implement probing. |
| class DnsSdServer { |
| public: |
| - // Constructs unstarted server. |
| + // Constructor does not start server. |
| DnsSdServer(); |
| - // Stops server. |
| + // Stops the server and destroys the object. |
| ~DnsSdServer(); |
| // Starts the server. Returns |true| if server works. Also sends |
| // announcement. |
| - bool Start(); |
| + bool Start(const ServiceParameters& serv_params, |
| + uint32 full_ttl, const std::string& txt_data) WARN_UNUSED_RESULT; |
|
gene
2013/06/19 05:40:51
TXT data will be easier to represent as vector<std
maksymb
2013/06/19 21:47:21
Done.
|
| // Sends announcement if server works. |
| void Update(); |
| @@ -30,21 +36,35 @@ class DnsSdServer { |
| // Stops server with announcement. |
| void Shutdown(); |
| - // Process pending queries for the server. |
| - void ProcessMessages(); |
| - |
| // Returns |true| if server works. |
| bool is_online() { return is_online_; } |
| + // Updates data for TXT respond. |
| + void UpdateTxtData(const std::string& txt_data); |
|
gene
2013/06/19 05:40:51
UpdateMetadata ?
maksymb
2013/06/19 21:47:21
Done.
|
| + |
| private: |
| // Binds a socket to multicast address. Returns |true| on success. |
| bool CreateSocket(); |
| + // Processes single query. |
| + void ProccessQuery(uint32 current_ttl, const DnsQueryRecord& query, |
| + DnsResponseBuilder* builder) const; |
| + |
| + // Processes DNS message. |
| + void ProcessMessage(int len, net::IOBufferWithSize* buf); |
| + |
| + // CompletionCallback for receiving data from DNS. |
| + void DoLoop(int rv); |
| + |
| + // Function to start listening to socket (delegate to DoLoop function). |
| + void OnDatagramReceived(); |
| + |
| // Sends announcement. |
| void SendAnnouncement(uint32 ttl); |
| - // Returns |true| if server received some questions. |
| - bool CheckPendingQueries(); |
| + // Calculates and returns current TTL (with accordance to last send |
| + // announcement time. |
| + uint32 GetCurrentTLL() const; |
| // Stores |true| if server was started. |
| bool is_online_; |
| @@ -55,8 +75,26 @@ class DnsSdServer { |
| // Stores multicast address end point. |
| net::IPEndPoint multicast_address_; |
| + // Stores time until last announcement is live. |
| + base::Time time_until_live_; |
| + |
| + // Stores service parameters (like service-name and service-type etc.) |
| + ServiceParameters serv_params_; |
| + |
| + // Stores the buffer for receiving messages. |
| + scoped_refptr<net::IOBufferWithSize> recv_buf_; |
| + |
| + // Stores address from where last message was sent. |
| + net::IPEndPoint recv_address_; |
| + |
| + // Stores information for TXT respond. |
| + std::string txt_data_; |
| + |
| + // TTL for announcements |
| + uint32 full_ttl_; |
| + |
| DISALLOW_COPY_AND_ASSIGN(DnsSdServer); |
| }; |
| -#endif // GCP20_PROTOTYPE_DNS_SD_H_ |
| +#endif // CLOUD_PRINT_GCP20_PROTOTYPE_DNS_SD_SERVER_H_ |