Files moved, - boringssl_certificate.h - buffer_queue.h - byte_buffer.h - data_rate_limiter.h - recursive_critical_section.h - dscp.h - file_rotating_stream.h - ifaddrs_converter.h - log_sinks.h - fifo_buffer.h - memory_stream.h - message_digest.h - win32.h - rate_tracker.h - openssl_digest.h - openssl_key_pair.h - memory_usage.h - ssl_certificate.h - ssl_adapter.h - platform_thread_types.h - ssl_fingerprint.h - cpu_time.h - proxy_server.h - boringssl_identity.h - string_utils.h - default_socket_server.h - openssl_session_cache.h - net_helpers.h - network.h - network_monitor_factory.h - network_route.h - sent_packet.h - openssl_adapter.h - openssl_stream_adapter.h - operations_chain.h - net_helper.h No-Iwyu: ssl and socket related files don't play well it include cleaner Bug: webrtc:42232595 Change-Id: I949cf4e8be6dab99ce170d8c7388c84fdcdd6447 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/382520 Reviewed-by: Harald Alvestrand <hta@webrtc.org> Commit-Queue: Evan Shrubsole <eshr@webrtc.org> Cr-Commit-Position: refs/heads/main@{#44274}
43 lines
1013 B
C++
43 lines
1013 B
C++
/*
|
|
* Copyright 2004 The WebRTC Project Authors. All rights reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "rtc_base/string_utils.h"
|
|
|
|
#include <cstddef>
|
|
#include <cstdio>
|
|
#include <cstring>
|
|
#include <string>
|
|
|
|
#include "absl/strings/string_view.h"
|
|
|
|
namespace webrtc {
|
|
|
|
size_t strcpyn(char* buffer, size_t buflen, absl::string_view source) {
|
|
if (buflen <= 0)
|
|
return 0;
|
|
|
|
size_t srclen = source.length();
|
|
if (srclen >= buflen) {
|
|
srclen = buflen - 1;
|
|
}
|
|
memcpy(buffer, source.data(), srclen);
|
|
buffer[srclen] = 0;
|
|
return srclen;
|
|
}
|
|
|
|
std::string ToHex(const int i) {
|
|
char buffer[50];
|
|
snprintf(buffer, sizeof(buffer), "%x", i);
|
|
|
|
return std::string(buffer);
|
|
}
|
|
|
|
} // namespace webrtc
|