From 13da715cfaf25573c2b9f68dec1e33cedf7a207e Mon Sep 17 00:00:00 2001 From: cliffg-softwarelibre Date: Fri, 31 May 2024 17:33:33 -0600 Subject: [PATCH] Adding Boost License shield to main README --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 1a28614..9a1bbad 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,8 @@ ![GH Tag](https://img.shields.io/github/v/tag/connectivecpp/shared-buffer?label=GH%20tag) +![License](https://img.shields.io/badge/License-Boost%201.0-blue) + ## Overview The `shared_buffer` classes are reference counted `std::byte` buffer classes useful for asynchronous networking. In particular, the Asio asynchronous networking library requires a buffer to be kept alive and valid until the outstanding IO operation (e.g. a network write) is completed. A straightforward and idiomatic way to achieve this is by using reference counted buffers.