You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Stanislav Malyshev 8ecd0a4943 MFB: limit iconv parameters here too 19 years ago
..
README adding xmlrpc extension, per Stig's request 25 years ago
acinclude.m4 MFB_4_3: Quote macro names in AC_DEFUN() 21 years ago
base64.c MFB 19 years ago
base64.h MFB 19 years ago
encodings.c MFB: limit iconv parameters here too 19 years ago
encodings.h adding xmlrpc extension, per Stig's request 25 years ago
queue.c merged in updates from SF project. bring php repository up to date with xmlrpc-epi version 0.51 24 years ago
queue.h Removed C++ style comments. 22 years ago
simplestring.c Fix some compile warnings (patch by Joe Orton) 23 years ago
simplestring.h merged in updates from SF project. bring php repository up to date with xmlrpc-epi version 0.51 24 years ago
system_methods.c merged in updates from SF project. bring php repository up to date with xmlrpc-epi version 0.51 24 years ago
system_methods_private.h adding xmlrpc extension, per Stig's request 25 years ago
xml_element.c Bump year. 19 years ago
xml_element.h make it compile again and nuke most warnings 25 years ago
xml_to_dandarpc.c MFB 19 years ago
xml_to_dandarpc.h adding xmlrpc extension, per Stig's request 25 years ago
xml_to_soap.c MFB 19 years ago
xml_to_soap.h patches to sync with sourceforge project, version 0.50. primary change: adds support for SOAP v 1.1 25 years ago
xml_to_xmlrpc.c MFB 19 years ago
xml_to_xmlrpc.h adding xmlrpc extension, per Stig's request 25 years ago
xmlrpc.c MFB: Fixed bug #42189 (xmlrpc_set_type() crashes php on invalid datetime 19 years ago
xmlrpc.h merged in updates from SF project. bring php repository up to date with xmlrpc-epi version 0.51 24 years ago
xmlrpc.m4 MFB_4_3: Quote macro names in AC_DEFUN() 21 years ago
xmlrpc_introspection.c - Fixed bug #35723 (xmlrpc_introspection.c fails compile per C99 std) 20 years ago
xmlrpc_introspection.h adding xmlrpc extension, per Stig's request 25 years ago
xmlrpc_introspection_private.h adding xmlrpc extension, per Stig's request 25 years ago
xmlrpc_private.h patches to sync with sourceforge project, version 0.50. primary change: adds support for SOAP v 1.1 25 years ago
xmlrpc_win32.h Make xmlrpc module compilable on windows. compiles, but untested. 25 years ago

README

organization of this directory is moving towards this approach:

<module>.h -- public API and data types
<module>_private.h -- protected API and data types
<module>.c -- implementation and private API / types

The rules are:
.c files may include *_private.h.
.h files may not include *_private.h

This allows us to have a nicely encapsulated C api with opaque data types and private functions
that are nonetheless shared between source files without redundant extern declarations..