summaryrefslogtreecommitdiff
path: root/ext/rpc
Commit message (Collapse)AuthorAgeFilesLines
* moved to pecl by sascha. remove them from head.Sterling Hughes2003-06-2583-20285/+0
| | | | | | discussed with harald, will remain in pecl till he has some more time to work on it.
* updating license information in the headers.James Cox2003-06-1024-72/+72
|
* Adjust path to bundled expat sources for Win32 build.Sebastian Bergmann2003-05-031-2/+2
|
* - Fixed bug #22944 (--with-java "make install" fails)foobar2003-04-041-2/+6
|
* MFB ext/comHarald Radi2003-03-271-1/+1
| | | | | | fix #22899 invoke is called twice
* Eliminate TSRMLS_FETCH() calls in destroy_op_array() and zend_get_class_entry().Sebastian Bergmann2003-03-265-15/+26
|
* Fix build for activescript sapiWez Furlong2003-03-021-0/+2
|
* Add folding markers and editor directive blocks.Jon Parise2003-02-193-2/+64
|
* Remove a stray COM reference.Jon Parise2003-02-181-2/+2
|
* Fix incorrect TSRMLS_CC usage.Wez Furlong2003-02-181-1/+1
| | | | | Fix com_create_guid()
* Implement com_create_guid().Wez Furlong2003-02-182-0/+26
| | | | | | Add a special case for RETVAL_VARIANT when a variant is of type VT_DISPATCH but has a NULL dispatch pointer. This kind of variant is returned by the WindowsInstaller automation interface.
* Implement com_indexed_prop_set() which allows setting of array-like indexed ↵Wez Furlong2003-02-181-0/+73
| | | | | | | | properties on COM objects. It is expected that this function will be transient, waiting for engine-level and then rpc-level support to be implemented so that this can be integrated more completely. I'm committing this now so that others can help develop the msi installer scripts that require this feature.
* Win32 build improvementsZeev Suraski2003-02-174-0/+8
|
* A add much more useful select(2) implementation than is provided byWez Furlong2003-02-161-3/+3
| | | | | | | | | | | | | windows sockets. The winsock implementation will only work with sockets; our implementation works with sockets and file descriptors. By association, stream_select() will now operate correctly with files, pipes and sockets. This change required linking against the winsock2 library. In terms of compatibility, only older versions of windows 95 do not have winsock2 installed by default. It is available as a redistributable file, and is most likely installed by any OS patches (eg: Internet Explorer) applied by the user. Also, add a win32 compatible pipe test when opening a stream from a pipe. This test will only work on NT, win2k and XP platforms. Without this test, interleaved fread() and select() calls would cause the read buffer to be clobbered. I will be working on a fix for this issue for win9x.
* Fixed warnings.Ilia Alshanetsky2003-02-131-2/+2
|
* Added missing header needed for rpc_error().Ilia Alshanetsky2003-02-131-0/+2
|
* Fix random crashesZeev Suraski2003-02-111-0/+1
|
* clean up source and improve hashing for implicitlyHarald Radi2003-02-113-51/+79
| | | | | created objects (aka return values)
* improved reverse lookup of ProgID based on an IDispatch pointerHarald Radi2003-02-112-41/+74
|
* fix rpc_error callWez Furlong2003-02-101-1/+1
|
* a bunch of fixesHarald Radi2003-02-1010-193/+171
|
* s/com/skeleton/ is not always a good ideaHarald Radi2003-02-101-1/+1
|
* byref really means that we want the zval...Wez Furlong2003-02-101-5/+4
|
* Implement com_describeWez Furlong2003-02-101-2/+137
|
* Error reporting clean upWez Furlong2003-02-101-7/+11
|
* Newly created objects should use a separate function_table from the global ↵Wez Furlong2003-02-101-3/+11
| | | | | | | | class entry table. For objects instantiated via new, make sure that intern->function_table uses the newly created table when the class is registered. For generic per-object hashing, copy the ce->function_table into intern->function_table.
* Error reporting leaks and cleanupWez Furlong2003-02-102-8/+6
|
* fix a memleakHarald Radi2003-02-091-5/+4
|
* Fix various little leaks and segfaults.Wez Furlong2003-02-093-35/+21
| | | | | | | | Fix scripts like this: $obj = new COM('Foo'); $obj2 = $obj->get_object(); $obj2->method(); // <-- would segfault here
* Add get_class_name handler so that the current var_dump implementation does ↵Wez Furlong2003-02-092-3/+58
| | | | | | | not segfault. Add a generic rpc_object_from_data() function for generating rpc objects from C code (as discussed with Harald).
* Fix some warningsWez Furlong2003-02-091-3/+3
|
* ZTS fixes.Ilia Alshanetsky2003-01-191-4/+4
|
* ZTS fixes.Ilia Alshanetsky2003-01-192-1/+5
|
* Changed php_error to php_error_docref.Ilia Alshanetsky2003-01-196-37/+35
|
* change library nameHarald Radi2003-01-161-4/+4
|
* update skeletonHarald Radi2003-01-163-12/+69
|
* for those who prefer to have com as a shared libHarald Radi2003-01-161-0/+167
|
* make layers loadable as self-sustaining php extensionHarald Radi2003-01-169-151/+124
| | | | | which registeres itself in the rpc framework.
* Typo fixes.Ilia Alshanetsky2003-01-151-2/+2
|
* Getting rid of the old API parsing code.Ilia Alshanetsky2003-01-152-14/+14
|
* Porting of patch applied to ext/xmlrpc.Ilia Alshanetsky2003-01-141-400/+354
|
* false should be VT_FALSEFrank M. Kromann2003-01-131-1/+1
|
* Adjust paths to the new location java.dspEdin Kadribasic2003-01-131-30/+30
|
* Fix ZTS build here too.Edin Kadribasic2003-01-131-0/+2
| | | | | | | | # # What is the correct location of XMLRPC extension? # Can the reduntand one be removed then and the build system fixed # to acommodate that.
* Patch by Giuseppe Tanzilli <g.tanzilli@gruppocsf.com>.Sebastian Bergmann2003-01-121-1/+3
|
* Add missing ,.Sebastian Bergmann2003-01-111-1/+1
|
* fix buildHarald Radi2003-01-113-7/+19
|
* - Fixed bug #20155: xmlrpc compile problem with zendengine2 (Path by JanDerick Rethans2003-01-101-2/+2
| | | | | | | Schneider) @- Fixed bug #20155: xmlrpc compile problem with zendengine2 (Derick, Jan @ Schneider)
* Bump year.Sebastian Bergmann2002-12-3121-21/+21
|
* Fix bugs #20270, #15702, #18600. Patch by Tony J. White <tjw@tjw.org>.Sebastian Bergmann2002-12-041-19/+7
|