Jump to content

HTTPS/Client-authenticated: Difference between revisions

m
(Small alteration to code.)
m (→‎{{header|Wren}}: Minor tidy)
Line 412:
{{libheader|libcurl}}
An embedded program so we can ask the C host to communicate with libcurl for us.
<syntaxhighlight lang="ecmascriptwren">/* https_clientHTTPS_client-authenticated.wren */
 
var CURLOPT_URL = 10002
Line 448:
<br>
We now embed this in the following C program, compile and run it.
<syntaxhighlight lang="c">/* gcc https_clientHTTPS_client-authenticated.c -o https_clientHTTPS_client-authenticated -lcurl -lwren -lm */
 
#include <stdio.h>
Line 548:
WrenVM* vm = wrenNewVM(&config);
const char* module = "main";
const char* fileName = "https_clientHTTPS_client-authenticated.wren";
char *script = readFile(fileName);
WrenInterpretResult result = wrenInterpret(vm, module, script);
9,485

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.