Add possibility to use libcrypto for encryption
[awesomized/libmemcached] / src / libmemcached / udp.cc
index 0d1eb157236ee2ad50f791efd5b977212ca6ef95..caa4dbd75db66790d5d7b0d431ba74e18feb39ba 100644 (file)
@@ -1,6 +1,6 @@
 /*
     +--------------------------------------------------------------------+
-    | libmemcached - C/C++ Client Library for memcached                  |
+    | libmemcached-awesome - C/C++ Client Library for memcached          |
     +--------------------------------------------------------------------+
     | Redistribution and use in source and binary forms, with or without |
     | modification, are permitted under the terms of the BSD license.    |
@@ -9,7 +9,7 @@
     | the terms online at: https://opensource.org/licenses/BSD-3-Clause  |
     +--------------------------------------------------------------------+
     | Copyright (c) 2006-2014 Brian Aker   https://datadifferential.com/ |
-    | Copyright (c) 2020 Michael Wallner   <mike@php.net>                |
+    | Copyright (c) 2020-2021 Michael Wallner        https://awesome.co/ |
     +--------------------------------------------------------------------+
 */
 
@@ -32,7 +32,7 @@ void increment_udp_message_id(memcached_instance_st *ptr) {
   int msg_num = get_msg_num_from_request_id(cur_req);
   int thread_id = get_thread_id_from_request_id(cur_req);
 
-  if (((++msg_num) & UDP_REQUEST_ID_THREAD_MASK) != 0)
+  if (((++msg_num) & UDP_REQUEST_ID_THREAD_MASK))
     msg_num = 0;
 
   header->request_id = htons((uint16_t)(thread_id | msg_num));