Skip to content

Commit a9e6d53

Browse files
committed
1.8.1-20241112
1 parent e19239a commit a9e6d53

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ asynframe framework解决上面所提的软件产品开发过程中的六大问
4141
6. 支持网络udp/tcp端口复用框架。
4242
7. 支持lua框架。
4343
8. 支持jvm框架。
44+
9. 支持python框架。
4445

4546
|模块|类型|功能|例子/程序|
4647
|:--|:--|:--|:--|
@@ -64,7 +65,7 @@ asynframe framework解决上面所提的软件产品开发过程中的六大问
6465
|zip|插件|基于zlib-1.2.11.0实现IDataTransmit接口<br>1.支持压缩zip文件<br>2.deflate/inflate数据|\support\testframe|
6566
|sqlite|插件|基于sqlite-3.3.20实现IOsComman接口|\support\testframe|
6667
|dtp|插件[asynsock]|实现tcp/udp的端口复用框架|\support\testnetserver_dtp-tcp.port<br>\support\testnetserver_dtp-udp.port|
67-
|lua|插件|基于lua-5.4.4实现IOsCommand接口执行lua框架|\support\testlua\testlua<br>\support\testlua\testapi|
68+
|lua|插件|实现IOsCommand接口执行lua框架|\support\testlua\testlua<br>\support\testlua\testapi|
6869
|jvmproxy|插件|实现IOsComman接口执行java框架|\support\testjava\testjvm<br>\support\testjava\testapi<br>[javax](https://github.com/netsecsp/javax)|
6970
|python38/python312|插件|实现IOsComman接口执行python框架|\support\testpython\testpython<br>\support\testpython\testapi|
7071

@@ -86,7 +87,7 @@ asynframe framework解决上面所提的软件产品开发过程中的六大问
8687
8788
1. 需在工程里设置asynframe相应的include/lib路径
8889
2. 根据工程的运行库选择链接asynframe相应的asynsdk_mini-[MD/MDd/MT/MTd].lib
89-
3. 链接asyncore.lib
90+
3. 链接asyncore_dll.lib
9091
```c++
9192
int main(int argc, const char *argv[])
9293
{

README_EN.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,10 @@ Asynframe framework solves the six problems mentioned above in the process of so
3838
3. Embed the micro thread core object into other threads to isolate other codes, so as to facilitate code reconstruction.
3939
4. Get a very smooth user experience through the asynchronous execution framework.
4040
5. The unified development template, non locking mechanism, high-performance IO framework and demo reduce the learning cost of developers. It can rapidly develop stable and high-performance application modules. It can greatly reduce the amount of developed code.
41-
6. Support network UDP/TCP port multiplexing framework.
42-
7. Support Lua framework.
43-
8. Support JVM framework.
41+
6. Support network UDP/TCP port multiplexing framework.
42+
7. Support Lua framework.
43+
8. Support JVM framework.
44+
9. Support Python framework.
4445

4546
|module|type|function|demo|
4647
|:--|:--|:--|:--|
@@ -64,7 +65,7 @@ Asynframe framework solves the six problems mentioned above in the process of so
6465
|zip|plugin|Implementation of IDataTransmit interface based on zlib-1.2.11.0<br>1.implement zip files<br>2.deflate/inflate data|\support\testframe|
6566
|sqlite|plugin|Implementation of IOsCommand interface based on sqlite-3.3.20|\support\testframe|
6667
|Dtp|plugin[asyncock]|port reuse framework to implement tcp/udp|support testnetserver_ dtp-tcp.port<br>\support\testnetserver_ dtp-udp.port|
67-
|lua|plugin|Implementation of IOsCommand interface based on lua-5.4.4 lua framework|\support\testlua\testlua<br>\support\testlua\testapi|
68+
|lua|plugin|Implementation of IOsCommand interface lua framework|\support\testlua\testlua<br>\support\testlua\testapi|
6869
|jvmproxy|plugin|Implementation of IOsCommand interface java framework|\support\testjava\testjvm<br>\support\testjava\testapi<br>[javax](https://github.com/netsecsp/javax)|
6970
|python38/python312|plugin|Implementation of IOsCommand interface python framework|\support\testpython\testpython<br>\support\testpython\testapi|
7071

@@ -86,7 +87,7 @@ Asynframe framework solves the six problems mentioned above in the process of so
8687
8788
1. The include / lib path corresponding to asynframe needs to be set in the project
8889
2. Select and link the corresponding asynsdk of asynframe according to the runtime of the asynsdk_mini-[MD/MDd/MT/MTd].lib
89-
3. Link asyncore.lib
90+
3. Link asyncore_dll.lib
9091
```c++
9192
int main(int argc, const char *argv[])
9293
{

0 commit comments

Comments
 (0)