gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 197/254: examples/externalsocket.c: s/closesocket/c


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 197/254: examples/externalsocket.c: s/closesocket/closecb
Date: Sat, 17 Jun 2017 16:53:49 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to annotated tag gnurl-7.54.1
in repository gnurl.

commit c5de7f50f73919ead96aa1b541090cb25d63b012
Author: Daniel Stenberg <address@hidden>
AuthorDate: Wed May 31 23:22:46 2017 +0200

    examples/externalsocket.c: s/closesocket/closecb
    
    ... since closesocket is a function in WinSock.
    
    Reported-by: Marcel Raad
    Bug: 
https://github.com/curl/curl/commit/55fcb8485914700132fd1854c9509b66c955efbe#co
    mmitcomment-22347818
---
 docs/examples/externalsocket.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/examples/externalsocket.c b/docs/examples/externalsocket.c
index 9adb0dc4f..0ac113db3 100644
--- a/docs/examples/externalsocket.c
+++ b/docs/examples/externalsocket.c
@@ -58,7 +58,7 @@ static size_t write_data(void *ptr, size_t size, size_t 
nmemb, void *stream)
   return written;
 }
 
-static int closesocket(void *clientp, curl_socket_t item)
+static int closecb(void *clientp, curl_socket_t item)
 {
   (void)clientp;
   printf("libcurl wants to close %d now\n", (int)item);
@@ -145,7 +145,7 @@ int main(void)
     curl_easy_setopt(curl, CURLOPT_OPENSOCKETDATA, &sockfd);
 
     /* call this function to close sockets */
-    curl_easy_setopt(curl, CURLOPT_CLOSESOCKETFUNCTION, closesocket);
+    curl_easy_setopt(curl, CURLOPT_CLOSESOCKETFUNCTION, closecb);
     curl_easy_setopt(curl, CURLOPT_CLOSESOCKETDATA, &sockfd);
 
     /* call this function to set options for the socket */

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]