Skip to content

Commit 25200d4

Browse files
committed
Update readme and version.h
1 parent acab61d commit 25200d4

File tree

2 files changed

+16
-11
lines changed

2 files changed

+16
-11
lines changed

README.md

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Replacement for Espressif's libssl, kept as close as possible to [axTLS](http://axtls.sourceforge.net/) source.
2-
Currently based on axTLS 2.0.0+.
2+
3+
Currently based on axTLS 2.1.2 (SVN version 274).
34

45
[![Build status](https://travis-ci.org/igrr/axtls-8266.svg)](https://travis-ci.org/igrr/axtls-8266)
56

6-
This is not a self-sufficient library. Application has to provide the following symbols (list not complete yet):
7+
## Using the library
8+
9+
This is not a self-sufficient library. In addition to the standard C library functions, application has to provide the following functions:
10+
711
```
8-
ax_port_malloc
9-
ax_port_calloc
10-
ax_port_realloc
11-
ax_port_free
1212
ax_port_read
1313
ax_port_write
1414
ax_port_open
@@ -17,13 +17,18 @@ ax_get_file
1717
phy_get_rand (provided by the IoT SDK)
1818
ets_printf (in ESP8266 ROM)
1919
ets_putc (in ESP8266 ROM)
20-
gettimeofday
21-
time
22-
ctime
2320
```
2421

2522
For use with LwIP raw TCP API, see [compat/README.md](https://github.com/attachix/lwirax/blob/master/README.md)
2623

27-
To build, add xtensa toolchain to your path, and run `make`.
24+
## Building
25+
26+
To build, add xtensa toolchain to your path, and run `make`. The library will be built in `bin/` directory.
27+
28+
## Credits and license
29+
30+
[axTLS](http://axtls.sourceforge.net/) is written and maintained by Cameron Rich.
31+
32+
Other people have contributed to this port; see git logs for a full list.
2833

2934
See [LICENSE](LICENSE) file for axTLS license.

ssl/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#define AXTLS_VERSION "2.0.0"
1+
#define AXTLS_VERSION "2.1.2"

0 commit comments

Comments
 (0)