HomeSort by relevance Sort by last modified time
    Searched refs:client_ip_hex_ (Results 1 - 2 of 2) sorted by null

  /external/grpc-grpc/src/cpp/server/load_reporter/
load_data_store.cc 90 client_ip_hex_ = client_ip_and_token.substr(cur_pos, ip_hex_size);
102 if (client_ip_hex_.empty()) {
104 } else if (client_ip_hex_.size() == kIpv4AddressLength) {
106 if (sscanf(client_ip_hex_.c_str(), "%x", &ip_bytes) != 1) {
109 client_ip_hex_.c_str());
115 } else if (client_ip_hex_.size() == kIpv6AddressLength) {
118 if (sscanf(client_ip_hex_.substr(i * 8, (i + 1) * 8).c_str(), "%x",
123 client_ip_hex_.substr(i * 8, (i + 1) * 8).c_str());
load_data_store.h 75 client_ip_hex_(std::move(client_ip_hex)) {}
82 ", user_id_=" + user_id_ + ", client_ip_hex_=" + client_ip_hex_ +
88 user_id_ == other.user_id_ && client_ip_hex_ == other.client_ip_hex_;
98 const grpc::string& client_ip_hex() const { return client_ip_hex_; }
111 hash_combine(&h, k.client_ip_hex_);
120 grpc::string client_ip_hex_; member in class:grpc::load_reporter::LoadRecordKey

Completed in 1127 milliseconds