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.
 
 
 
 
 
 
Ard Biesheuvel b703fe79f6 Fix warning 22 years ago
..
README adding xmlrpc extension, per Stig's request 25 years ago
acinclude.m4 fix various build errors. default to no xmlrpc 25 years ago
base64.c removing unused variables 23 years ago
base64.h adding xmlrpc extension, per Stig's request 25 years ago
encodings.c Fix warning 22 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 adding xmlrpc extension, per Stig's request 25 years ago
simplestring.c Fix some compile warnings (patch by Joe Orton) 22 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 Fix some compile warnings (patch by Joe Orton) 22 years ago
xml_element.h make it compile again and nuke most warnings 25 years ago
xml_to_dandarpc.c Make xmlrpc module compilable on windows. compiles, but untested. 24 years ago
xml_to_dandarpc.h adding xmlrpc extension, per Stig's request 25 years ago
xml_to_soap.c merged in updates from SF project. bring php repository up to date with xmlrpc-epi version 0.51 24 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 merged in updates from SF project. bring php repository up to date with xmlrpc-epi version 0.51 24 years ago
xml_to_xmlrpc.h adding xmlrpc extension, per Stig's request 25 years ago
xmlrpc.c Fix some compile warnings (patch by Joe Orton) 22 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 Please welcome the new build system. 24 years ago
xmlrpc_introspection.c Fix some compile warnings (patch by Joe Orton) 22 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. 24 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..