summaryrefslogtreecommitdiff
path: root/databases/memcached/files/patch-memcached.c
blob: 547f0f61100187621ba0446f13a757438115937b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
--- memcached.c.orig	2025-07-29 01:17:34 UTC
+++ memcached.c
@@ -686,7 +686,7 @@ conn *conn_new(const int sfd, enum conn_states init_st
         if (init_state == conn_listening) {
             fprintf(stderr, "<%d server listening (%s)\n", sfd,
                 prot_text(c->protocol));
-        } else if (IS_UDP(transport)) {
+        } else if IS_UDP(transport) {
             fprintf(stderr, "<%d server listening (udp)\n", sfd);
         } else if (c->protocol == negotiating_prot) {
             fprintf(stderr, "<%d new auto-negotiating client connection\n",
@@ -741,7 +741,7 @@ conn *conn_new(const int sfd, enum conn_states init_st
         c->ssl_enabled = false;
     }
 
-    if (IS_UDP(transport)) {
+    if IS_UDP(transport) {
         c->try_read_command = try_read_command_udp;
     } else {
         switch (c->protocol) {
@@ -839,7 +839,7 @@ static void conn_cleanup(conn *c) {
         c->sasl_conn = NULL;
     }
 
-    if (IS_UDP(c->transport)) {
+    if IS_UDP(c->transport) {
         conn_set_state(c, conn_read);
     }
 }
@@ -1147,7 +1147,7 @@ bool resp_start(conn *c) {
         c->resp->next = resp;
         c->resp = resp;
     }
-    if (IS_UDP(c->transport)) {
+    if IS_UDP(c->transport) {
         // need to hold on to some data for async responses.
         c->resp->request_id = c->request_id;
         c->resp->request_addr = c->request_addr;
@@ -2160,7 +2160,7 @@ void process_stats_conns(ADD_STAT add_stats, void *c) 
              * output -- not worth the complexity of the locking that'd be
              * required to prevent it.
              */
-            if (IS_UDP(conns[i]->transport)) {
+            if IS_UDP(conns[i]->transport) {
                 APPEND_NUM_STAT(i, "UDP", "%s", "UDP");
             }
             if (conns[i]->state != conn_closed) {
@@ -3322,7 +3322,7 @@ static void drive_machine(conn *c) {
 
         case conn_closing:
             if (!c->resps_suspended) {
-                if (IS_UDP(c->transport))
+                if IS_UDP(c->transport)
                     conn_cleanup(c);
                 else
                     conn_close(c);
@@ -3524,7 +3524,7 @@ static int server_socket(const char *interface,
 #endif
 
         setsockopt(sfd, SOL_SOCKET, SO_REUSEADDR, (void *)&flags, sizeof(flags));
-        if (IS_UDP(transport)) {
+        if IS_UDP(transport) {
             maximize_sndbuf(sfd);
         } else {
             error = setsockopt(sfd, SOL_SOCKET, SO_KEEPALIVE, (void *)&flags, sizeof(flags));
@@ -3579,7 +3579,7 @@ static int server_socket(const char *interface,
             }
         }
 
-        if (IS_UDP(transport)) {
+        if IS_UDP(transport) {
             int c;
 
             for (c = 0; c < settings.num_threads_per_udp; c++) {