mirror of
https://github.com/kakwa/uts-server
synced 2024-11-05 09:18:50 +01:00
fix link dl option
This commit is contained in:
parent
cc49f2aa3e
commit
73038b0ec5
@ -3,13 +3,13 @@ project (uts-server)
|
||||
include(ExternalProject)
|
||||
|
||||
|
||||
set(VERSION 0.1.5)
|
||||
set(VERSION 0.1.6)
|
||||
|
||||
option(DEBUG "compile with debug symbol" OFF)
|
||||
option(BUNDLE_CIVETWEB "bundle civetweb with uts-server" OFF)
|
||||
|
||||
option(STATIC "static linked binary" OFF)
|
||||
option(LINKDL "dynamicaly link dl" OFF)
|
||||
option(LINK_DL "dynamicaly link dl" OFF)
|
||||
option(LINK_GCC_S "dynamicaly link gcc_s" OFF)
|
||||
|
||||
IF(STATIC)
|
||||
|
@ -1,6 +1,11 @@
|
||||
Changelogs
|
||||
==========
|
||||
|
||||
0.1.6
|
||||
-----
|
||||
|
||||
* [fix ] option declaration for LINK_GCC_S
|
||||
|
||||
0.1.5
|
||||
-----
|
||||
|
||||
|
@ -14,8 +14,8 @@ with open(tsq_path) as f:
|
||||
counter=0
|
||||
old_time = time.time()
|
||||
while True:
|
||||
h1 = httplib.HTTPConnection('localhost:2020')
|
||||
#h1 = httplib.HTTPSConnection('localhost:2020', context=ssl._create_unverified_context())
|
||||
#h1 = httplib.HTTPConnection('localhost:2020')
|
||||
h1 = httplib.HTTPSConnection('freebsd.kakwa.fr:2020', context=ssl._create_unverified_context())
|
||||
h1.request('POST', '/', body, {"Content-Type": "application/timestamp-query"})
|
||||
response = h1.getresponse()
|
||||
h1.close()
|
||||
|
Loading…
Reference in New Issue
Block a user