summaryrefslogtreecommitdiff
path: root/net/ocamlnet/patches
AgeCommit message (Collapse)AuthorFilesLines
2022-05-03Updated net/ocamlnet to version 4.1.9.jaapb1-1/+2
This adds support for OCaml 4.11 and 4.12 (and later), fixes the building of cmxs files and includes some other minor bugfixes.
2018-05-09Updated net/ocamlnet to version 4.1.6.jaapb1-97/+0
This adds support for OCaml 4.07.
2018-01-22Removed cmxs option from net/ocamlnet.jaapb1-24/+0
(This is now correctly detected and does not need an option)
2018-01-10Updated package net/ocamlnet to version 4.1.5.jaapb3-126/+97
This version includes support for native plugins, and some more minor fixes.
2018-01-07Fix build against newer nettle.joerg1-0/+24
2017-07-17Updated package to make sure cmxs option works correctlyjaapb2-1/+54
2017-07-11Revbump assiociated with ocaml-4.04.2, and added patches to compile .cmxsjaapb1-9/+67
files
2016-12-30Updated package to latest version, 4.1.2. No substantive changes exceptjaapb3-58/+0
for compatibility with 0caml 4.03 (and .04).
2016-05-05Updated package to version 4.1.1, and added some patches from the upstreamjaapb3-0/+58
git repository to make package compile with ocaml 4.0.3. Changes include: * Cryptography: adding basic support for public key cryptography (provided by GnuTLS) * Authentication: the module types for SASL and HTTP authentication have been changed to a stateless style. Added an experimental SCRAM module for HTTP. * Nethttp_client: Supporting Digest authentication with SHA-256 as hash algorithm. Supporting Basic authentication with "charset" parameter. * XDR/RPC: supporting that direct mappings can be disabled when this is disadvantegous. For now, this is done for internal RPC services, because direct mappings do not copy values, which would be very surprising here. * Netplex: adding support for so-called internal services. This is a fast and type-safe way of exchanging messages between netplex containers. * ALL MODULES: Transitioning to the new "bytes" type for mutable strings while using "string" only for immutable strings. If compiled with OCaml-4.02 or newer, Ocamlnet is built with the -safe-string compiler option. * Netplex_sharedvar: implementing a new protocol that uses shared memory for announcing variable updates. Also, almost all functions can now be called from controller context. * Netsys_global: new module, for keeping a dictionary of global strings. The dictionary is connected with Netplex_sharedvar, so that the strings can be updated across process boundaries if used with Netplex. * Netsys_polysocket: adding this module * Netsys_polypipe: adding this module * Netasn1_encoder: new module for encding ASN.1 messages * Netnumber: on 64 bit platforms, the functions lt_uint4 and lt_uint8 were wrong. Fixed now.
2016-02-03Updated package to newest version, 4.0.4. Changes include:jaapb1-11/+7
* GnuTLS: compatibility with GnuTLS-3.4.2 * Nethttpd_plex: the post_add_hook was not called by accident (since OCamlnet-4); this is now fixed. * Nethtml: new option case_sensitive * GnuTLS: initializing the library on-demand. This avoids that /dev/random is kept open all the time since program start, and works around incompatibilities with Netplex. (Thomas Calderon found the problem.) * GnuTLS: setting DH parameters on certificates (this was forgotten in previous releases). (Thomas Calderon found the problem.) * GnuTLS: supporting GnuTLS versions where SRP is disabled. Supporting GnuTLS-3.4. * OpenBSD build: fix linker option (Christopher Zimmermann) * Equeue: There is a new method request_proxy_notification, which is only used by Uq_engines.qseq_engine (but unfortunately needs to appear in the public type of the object). This new method permits that chains of Uq_engines.qseq_engine pairs can now be arbitrarily long without consuming too much memory and without the danger of getting stack overflows. This fixes issues where notification chains got too long. In particular, we saw a stack overflow when retrieving a video stream via HTTP. The stream was sent with many chunks, resulting in a long Uq_engines.qseq_engine chain. Implementers of engines can simply define request_proxy_notification as no-ops. * Nethttp.set_content_range: this function generated an incorrect header (the "bytes" word was missing). (Török Edwin) * _oasis is generated from _oasis.in * Netplex: the Netplex socket directory has a different default if not specified in the config file. * Netshm: the POSIX specifier has now two args * IPv6: automatically enabled if there is a global IPv6 address * Unicode tables: Moved them to a separate netunidata library. This library needs to be linked in for getting access to the tables (this is no longer the default). * Renamings: Http_client, Ftp_client etc. => Nethttp_client, Netftp_client Mimestring => Netmime_string Xdr => Netxdr * Netmime: moved functions to Netmime_header and Netmime_channels * Netmech_scram: Removed the check that passwords only consist of ASCII chars. The user can now call Netsaslprep.saslprep. * Removed: rpc-auth-dh, nethttpd-for-netcgi2 * Http_client: the authentication mechanisms are now encapsulated in a first-class module HTTP_MECHANISM. So far, there is Digest authentication in this form. The signature of HTTP_MECHANISM is similar to SASL_MECHANISM. Another visible change is that the insecure Basic authentication is no longer enabled for non-TLS-secured connections. This can be changed back by setting flags, though. Some fixes in the design improve Digest authentication for proxy connections. * Netpop: implementating SASL authentication for POP3. Moved Netpop into netclient. * Netsmtp: implementing SASL authentication for SMTP. Moved Netsmtp into netclient. * Adding a framework for SASL, and a number of mechanisms (PLAIN, CRAM-MD5, DIGEST-MD5, SCRAM-SHA1). * fcgi/scgi/ajp connectors: exporting a handle_connection function, and unifying existing such functions (Christopher Zimmermann) * adding support for modular cryptography (symmetric ciphers and digests) * SCRAM is now implemented with the new crypto providers * removing dependency on Cryptokit * removed library netgssapi; now part of netsys/netstring * removed library netmech-scram; now part of netstring Ocamlnet-4 adds: - new library netgss-system - new library nettls-gnutls - removed equeue-ssl and rpc-ssl - X.500 modules Netasn1, Netdn, Netx509 - Crypto definitions Netsys_crypto_types, Netsys_crypto - TLS modules Netsys_tls, Nettls_support - Support for SASL and GSSAPI - Moved many functions from Uq_engines to new modules in the equeue library (Uq_client, Uq_server, Uq_multiplex, Uq_transfer)
2014-10-13- Fixed a broken patch (thanks to joerg@ for reporting this)jaapb1-14/+2
- Added option for GTK2 support
2013-12-12Fix variable name, fixes build on SunOS.jperkin1-3/+14
2013-04-03Updated package to version 3.6.3. Changes include:jaapb1-16/+0
* Netmcore_heap.mli: allowing to [add] bigarrays. New function [add_string] for creating uninitialized strings on heaps. New function [add_immutable] for retaining value sharing. * Netsys_mem: New options [Copy_conditionally] and [Keep_atom] for function [init_value]. * netsys_c_subprocess.c: fixing a deadlock issue (when calling commands via the Shell library) * Netdate: Fix interpretation of the ~localzone argument of several functions. Now the timezone is assumed for the target time, not the calling time * Netdate: Adding localization * Netconversion: Adding functions for converting to lowercase/ uppercase/titlecase, and for case-insensitive comparison * Fix Netfs.copy: When the copy method throws EXDEV, it is fallen back to a streaming-type copy * Several fixes for OS X * Daemonizer: now using a signal for waiting until the children are up and running * Fixes for OCaml-4.00 * Better endianness check as suggested by Matias Giovannini * Fixing handling of `Recv_send_implied sockets in socket_multiplex_controller * netzip: it is now autodetected whether the camlzip library is available under the findlib name "zip" or "camlzip"
2013-01-19Fix net/ocamlnet's AT_* flag build breakage on NetBSD.riastradh1-4/+17
2012-08-20Update to 3.6, provided by maintainer Jaap Boender in PR 46817.wiz1-0/+16
This is an update of ocamlnet to its newest version, 3.6. Changes are: * Netsys_sem: a new abstraction for emulating anonymous semaphores on systems that only provide named semaphores, like OS X. All users of semaphores inside Ocamlnet now base on Netsys_sem. * reimplementing Netstring_str for the case the Str engine is used. It is now thread-safe without having to use mutexes. * The default is now -disable-pcre * The module Netstring_pcre has been moved to a library of its own, namely netstring-pcre. It is only installed if -enable-pcre * Nethttp.Header.best_media_type: improved (patch by Christopher Zimmemann) * Netsys_mem.alloc_memory_pages: one can now mark the memory pages as executable * src/netsys/configure: disabling POSIX semaphore check for win32 * Fixes for OpenBSD (by Christopher Zimmermann) * Netcgi connectors (SCGI, AJP, FCGI): unifying the ~sockaddr and ~port arguments. ~port now also assumes a loopback binding. (Suggested by Christopher Zimmermann). * Allowing posix_spawn again for MacOS. It turns out the number of file actions is limited. If we are above the limit, posix_spawn is not used. * Ssl_exts: adding function for returning the fingerprint of a certificate * Https_client: new verify callback for additional certificate checks
2012-07-18Add comment and upstream bug report URL.wiz1-1/+5
2012-07-17net/ocamlnet: Fix for systems without AT_SYMLINK_FOLLOWmarino1-0/+13
DragonFly doesn't define AT_SYMLINK_FOLLOW. The added patch will appropriately disable linkat support. No revbump necessary - this patch doesn't change the binary on systems for which it has already built.
2012-07-06Update to 3.5.1, from Jaap Boender.wiz3-32/+15
6 years of changes. 3.5.1 in particular has: it is time for another version of Ocamlnet. The new release 3.5 focuses on the system interface, and includes a long list of smaller improvements. The system interface, Netsys_posix, is extended by: - Support for POSIX clocks and POSIX timers (with nanosecond resolution) - Netsys_posix.spawn usses now the posix_spawn call if present on the OS - Adding support for pollable events (as e.g. provided by Linux via eventfd). For other OS an emulation is available. - Support for epoll on Linux Note that Netsys_posix covers now large parts of POSIX realtime. Other improvements: - The code generator for XDR has been improved. A new switch -direct for ocamlrpcgen can be used to generate direct mappings between OCaml values and binary representation (in many cases). Speedups up to 50% are possible for large XDR values. - The new module Uq_mt allows it to access an event-driven resource from several kernel threads (e.g. use an RPC client commonly from several threads). - The thread-safety of Netplex container functions has been improved. - Netmulticore condition variables can now be polled, for better integration into event-based programs. - Option greedy_accepts for Netplex to support servers that accept many connections per second. With this improvement, Netplex can now accept more than 5000 connections/s, and assign them to worker processes. Last but not least there is now a new tutorial for Equeue (event systems and engines). In particular, the section about combining Ocamlnet with Lwt might be interesting.
2010-02-11Don't mess with ldconf.joerg1-2/+2
2010-01-30DESTDIR supportjoerg2-0/+32