瀏覽代碼

Updated guthub URI's

Thomas Davis 12 年之前
父節點
當前提交
57a5276677
共有 5 個文件被更改,包括 4 次插入6 次删除
  1. 2 2
      civetweb.h
  2. 1 1
      examples/upload.c
  3. 1 1
      examples/websocket.c
  4. 0 1
      main.c
  5. 0 1
      test/test.pl

+ 2 - 2
civetweb.h

@@ -55,7 +55,7 @@ struct mg_request_info {
 
 
 // This structure needs to be passed to mg_start(), to let civetweb know
 // This structure needs to be passed to mg_start(), to let civetweb know
 // which callbacks to invoke. For detailed description, see
 // which callbacks to invoke. For detailed description, see
-// https://github.com/valenok/civetweb/blob/master/UserManual.md
+// https://github.com/sunsetbrew/civetweb/blob/master/UserManual.md
 struct mg_callbacks {
 struct mg_callbacks {
   // Called when civetweb has received new HTTP request.
   // Called when civetweb has received new HTTP request.
   // If callback returns non-zero,
   // If callback returns non-zero,
@@ -151,7 +151,7 @@ struct mg_callbacks {
 //   };
 //   };
 //   struct mg_context *ctx = mg_start(&my_func, NULL, options);
 //   struct mg_context *ctx = mg_start(&my_func, NULL, options);
 //
 //
-// Refer to https://github.com/valenok/civetweb/blob/master/UserManual.md
+// Refer to https://github.com/sunsetbrew/civetweb/blob/master/UserManual.md
 // for the list of valid option and their possible values.
 // for the list of valid option and their possible values.
 //
 //
 // Return:
 // Return:

+ 1 - 1
examples/upload.c

@@ -1,5 +1,5 @@
 // Copyright (c) 2004-2012 Sergey Lyubka
 // Copyright (c) 2004-2012 Sergey Lyubka
-// This file is a part of civetweb project, http://github.com/valenok/civetweb
+// This file is a part of civetweb project, http://github.com/sunsetbrew/civetweb
 
 
 #include <stdio.h>
 #include <stdio.h>
 #include <string.h>
 #include <string.h>

+ 1 - 1
examples/websocket.c

@@ -1,5 +1,5 @@
 // Copyright (c) 2004-2012 Sergey Lyubka
 // Copyright (c) 2004-2012 Sergey Lyubka
-// This file is a part of civetweb project, http://github.com/valenok/civetweb
+// This file is a part of civetweb project, http://github.com/sunsetbrew/civetweb
 
 
 #include <stdio.h>
 #include <stdio.h>
 #include <string.h>
 #include <string.h>

+ 0 - 1
main.c

@@ -372,7 +372,6 @@ static void start_civetweb(int argc, char *argv[]) {
   process_command_line_arguments(argv, options);
   process_command_line_arguments(argv, options);
 
 
   // Make sure we have absolute paths for files and directories
   // Make sure we have absolute paths for files and directories
-  // https://github.com/valenok/civetweb/issues/181
   set_absolute_path(options, "document_root", argv[0]);
   set_absolute_path(options, "document_root", argv[0]);
   set_absolute_path(options, "put_delete_auth_file", argv[0]);
   set_absolute_path(options, "put_delete_auth_file", argv[0]);
   set_absolute_path(options, "cgi_interpreter", argv[0]);
   set_absolute_path(options, "cgi_interpreter", argv[0]);

+ 0 - 1
test/test.pl

@@ -1,6 +1,5 @@
 #!/usr/bin/env perl
 #!/usr/bin/env perl
 # This script is used to test Civetweb web server
 # This script is used to test Civetweb web server
-# $Id: test.pl 516 2010-05-03 12:54:37Z valenok $
 
 
 use IO::Socket;
 use IO::Socket;
 use File::Path;
 use File::Path;