YugabyteDB (2.13.1.0-b60, 21121d69985fbf76aa6958d8f04a9bfa936293b5)

Coverage Report

Created: 2022-03-22 16:43

/Users/deen/code/yugabyte-db/src/yb/util/net/sockaddr.h
Line
Count
Source
1
// Licensed to the Apache Software Foundation (ASF) under one
2
// or more contributor license agreements.  See the NOTICE file
3
// distributed with this work for additional information
4
// regarding copyright ownership.  The ASF licenses this file
5
// to you under the Apache License, Version 2.0 (the
6
// "License"); you may not use this file except in compliance
7
// with the License.  You may obtain a copy of the License at
8
//
9
//   http://www.apache.org/licenses/LICENSE-2.0
10
//
11
// Unless required by applicable law or agreed to in writing,
12
// software distributed under the License is distributed on an
13
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
// KIND, either express or implied.  See the License for the
15
// specific language governing permissions and limitations
16
// under the License.
17
//
18
// The following only applies to changes made to this file as part of YugaByte development.
19
//
20
// Portions Copyright (c) YugaByte, Inc.
21
//
22
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
23
// in compliance with the License.  You may obtain a copy of the License at
24
//
25
// http://www.apache.org/licenses/LICENSE-2.0
26
//
27
// Unless required by applicable law or agreed to in writing, software distributed under the License
28
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
29
// or implied.  See the License for the specific language governing permissions and limitations
30
// under the License.
31
//
32
#ifndef YB_UTIL_NET_SOCKADDR_H
33
#define YB_UTIL_NET_SOCKADDR_H
34
35
#include <netinet/in.h>
36
37
#include <iosfwd>
38
#include <string>
39
40
#include <boost/asio/ip/tcp.hpp>
41
#undef EV_ERROR // sys/event.h conflicts with libev
42
43
#include "yb/util/status_fwd.h"
44
45
namespace yb {
46
47
typedef boost::asio::ip::address IpAddress;
48
typedef boost::asio::ip::tcp::endpoint Endpoint;
49
50
std::string ToString(const Endpoint& endpoint);
51
Result<Endpoint> ParseEndpoint(const std::string& input, uint16_t default_port);
52
53
std::size_t hash_value(const IpAddress& address);
54
std::size_t hash_value(const Endpoint& endpoint);
55
56
class EndpointHash {
57
 public:
58
  typedef size_t result_type;
59
60
54.3k
  result_type operator()(const Endpoint& endpoint) const {
61
54.3k
    return hash_value(endpoint);
62
54.3k
  }
63
};
64
65
class IpAddressHash {
66
 public:
67
  typedef size_t result_type;
68
69
474k
  result_type operator()(const IpAddress& address) const {
70
474k
    return hash_value(address);
71
474k
  }
72
};
73
74
} // namespace yb
75
76
#endif // YB_UTIL_NET_SOCKADDR_H