blob: 9323623a50a102d9f7c035952a0fb884cdea1381 (
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
|
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
/* ######################################################################
SRV record support
##################################################################### */
/*}}}*/
#ifndef SRVREC_H
#define SRVREC_H
#include <arpa/nameser.h>
#include <vector>
#include <string>
class SrvRec
{
public:
std::string target;
u_int16_t priority;
u_int16_t weight;
u_int16_t port;
// each server is assigned a interval [start, end] in the space of [0, max]
int random_number_range_start;
int random_number_range_end;
int random_number_range_max;
bool operator<(SrvRec const &other) const {
return this->priority < other.priority;
}
};
/** \brief Get SRV records from host/port (builds the query string internally)
*/
bool GetSrvRecords(std::string name, std::vector<SrvRec> &Result);
/** \brief Get SRV records for query string like: _http._tcp.example.com
*/
bool GetSrvRecords(std::string host, int port, std::vector<SrvRec> &Result);
#endif
|