1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2026-02-20 03:13:37 +00:00

Rebuilt http-digest in pure JS to fix some issues

This commit is contained in:
Bryan Roe
2019-02-11 14:07:48 -08:00
parent 86d0b0fd18
commit 2d8c213b9d
11 changed files with 371 additions and 1176 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1845,7 +1845,6 @@ duk_context *ILibDuktape_ScriptContainer_InitializeJavaScriptEngineEx3(duk_conte
if ((securityFlags & SCRIPT_ENGINE_NO_NETWORK_ACCESS) == 0)
{
ILibDuktape_WebRTC_Init(ctx); // WebRTC library (browser api)
ILibDuktape_http_init(ctx, chain); // HTTP-Digest library (node api)
ILibDuktape_net_init(ctx, chain); // Network library (node api)
ILibDuktape_DGram_Init(ctx); // Datagram Sockets
ILibDuktape_HttpStream_Init(ctx); // HTTP Library (node api)

File diff suppressed because it is too large Load Diff

View File

@@ -1,24 +0,0 @@
/*
Copyright 2006 - 2018 Intel Corporation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#ifndef ___ILIBDUKTAPEHTTP___
#define ___ILIBDUKTAPEHTTP___
#include "duktape.h"
void ILibDuktape_http_init(duk_context *ctx, void *chain);
#endif