diff options
author | Anshul Thakur <anshulthakurjourneyendless@gmail.com> | 2024-06-26 17:40:57 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-26 14:10:57 +0200 |
commit | 8f6f73505d34574c090e5ee59ee0c33c0c9732de (patch) | |
tree | e3974b95676db57316c1513d3d00a059b3a5482c | |
parent | 556f892a56d57e1afadb91fd5a12078cb3e2e5dc (diff) |
Remove duplicate API for `ndpi_serialize_uint32_double` in ndpi_api.h (#2480)
Co-authored-by: Anshul Thakur <athakur@cdot.in>
-rw-r--r-- | src/include/ndpi_api.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/include/ndpi_api.h b/src/include/ndpi_api.h index fa1592863..653d8e565 100644 --- a/src/include/ndpi_api.h +++ b/src/include/ndpi_api.h @@ -1266,16 +1266,6 @@ extern "C" { * @param serializer The serializer handle * @param key The field name or ID * @param value The field value - * @param format The float value format - * @return 0 on success, a negative number otherwise - */ - int ndpi_serialize_uint32_double(ndpi_serializer *serializer, u_int32_t key, double value, const char *format /* e.f. "%.2f" */); - - /** - * Serialize a 32-bit unsigned int key and a double value - * @param serializer The serializer handle - * @param key The field name or ID - * @param value The field value * @param format The double value format * @return 0 on success, a negative number otherwise */ |