Issues uploading file to NextCloud server

2018-08-06 Thread Andy Pont
Hello, I am trying to create a PHP script to upload a single file to the WebDAV interface on a Nextcloud instance. The code I have so far is: $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $NextcloudHost . '/remote.php/webdav/files/' . $NextcloudUser . '/' . $calName);

Re: Windows users! Help us test upload performance tuning?

2018-08-06 Thread Andy Pont
Daniel wrote... Ok, so I installed Win 10 on Virtualbox 5.2.16 on my machine and I can confirm Jan's findings; in NAT mode the ideal backlog stays flat at 64 KB, and the patch provides no benefits. Once I switched to "Bridged adapter", I got normal results (as in, similar to what other people

Building libcurl for DOS

2016-08-16 Thread Andy Pont
Hello all, Fear not, you haven't all woken up back in 1996. I am working on a refresh to an embedded system that still runs DOS with a packet driver based TCP/IP network stack and a real mode application compiled using the OpenWatcom compiler. I need to be able to add the ability to make https

RE: Is the curl library what I need?

2015-11-02 Thread Andy Pont
Hi Daniel, > With that little conditional in mind, I would say that libcurl will > significantly simplify your effort as you'll get fully standards compliant > HTTPS capable POSTs (and more) with no basically no work more than > building it for your platform. As this is a BIOS extension space is

Is the curl library what I need?

2015-11-02 Thread Andy Pont
Hello, I am part way through a project developing an x86 BIOS extension that needs to communicate with and transfer files from an Apache web server initially using http. The network stack within the BIOS extension is lwIP and in the future it may also include an SSL/TLS library such as WolfSSL