1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-10 05:13:38 +00:00

1. Merged GC optimization for promise.js

2. Fixed crash that can occur if dgram is GC'ed during event dispatch
3. Fixed compiler warning in ILibWebClient.c
4. Updated GC for dhcp.js
This commit is contained in:
Bryan Roe
2021-07-17 11:32:25 -07:00
parent 980005b40b
commit c7a4356dac
5 changed files with 152 additions and 96 deletions

View File

@@ -2328,8 +2328,8 @@ void ILibWebClient_PreProcess(void* WebClientModule, fd_set *readset, fd_set *wr
NULL,
wcdo->proxy_remoteHostAndPort,
(struct sockaddr*)&wcdo->proxy,
wcdo->proxy_username[0]==NULL?NULL:wcdo->proxy_username,
wcdo->proxy_password[0]==NULL?NULL:wcdo->proxy_password,
wcdo->proxy_username[0]==0?NULL:wcdo->proxy_username,
wcdo->proxy_password[0]==0?NULL:wcdo->proxy_password,
ILibWebClient_OnInterrupt,
wcdo);
}