-
Notifications
You must be signed in to change notification settings - Fork 16
/
Changelog.txt
97 lines (55 loc) · 2.64 KB
/
Changelog.txt
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
0.1.12
2023-01-11 Brecht Sanders https://github.com/brechtsanders/
* added GitHub Actions CI
0.1.11
2023-01-11 Brecht Sanders https://github.com/brechtsanders/
* fixed Makefile to support overriding compliler with CC=<compiler>
0.1.10
2020-10-07 Brecht Sanders https://github.com/brechtsanders/
* fixed Makefile to detect if asprintf() is defined on Windows (needed for recent versions of MinGW-w64)
0.1.9
2020-03-07 Brecht Sanders https://github.com/brechtsanders/
* added Travis CI configuration file: .travis.yml
* fixed superfluous parameter to proxysocketconfig_create_direct() in proxysocket.c
0.1.8
2019-09-16 Brecht Sanders https://github.com/brechtsanders/
* added socket_get_error_message()
* added proxysocketconfig_set_timeout()
* added socket_set_timeouts_milliseconds()
0.1.7
2018-10-26 Brecht Sanders https://github.com/brechtsanders/
* improved ipify example application check for and report errors
0.1.6
2017-10-27 Brecht Sanders https://github.com/brechtsanders/
* fixed issue: proxysocket_connect(): returned no error message if no logging was set
0.1.5
2017-10-20 Brecht Sanders https://github.com/brechtsanders/
* fixed comment for proxysocketconfig_log_fn in proxysocket.h
* added proxysocketconfig_get_description() to get proxy description
0.1.4
2017-04-17 Brecht Sanders https://github.com/brechtsanders/
* proxysocket_connect() with proxy set to NULL makes direct connection
* added proxysocketconfig_get_type_name() to get name of proxy type
* added proxysocketconfig_get_name_type() to get proxy type by name
0.1.3
2017-03-24 Brecht Sanders https://github.com/brechtsanders/
* added support for proxy server host lookups (previously only local DNS)
* example program: ipify (connects to ipify.org to determine external IP)
0.1.2
2017-03-01 Brecht Sanders https://github.com/brechtsanders/
* fixed memory leak
0.1.1
2016-12-17 Brecht Sanders https://github.com/brechtsanders/
* added function socket_receiveline()
2016-12-17 Brecht Sanders https://github.com/brechtsanders/
* added example application example_ipify
2016-12-05 Brecht Sanders https://github.com/brechtsanders/
* improved log messages
0.1.0
2016-12-05 Brecht Sanders https://github.com/brechtsanders/
* initial version
* supported connection methods:
- no proxy
- HTTP proxy: only CONNECT method and without authentication or basic authentication
- SOCKS5 (RFC 1928): only without authentication or username/password
- SOCKS4: no active support for IDENT authentication