aboutsummaryrefslogtreecommitdiffstats
path: root/common/estream.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* estream: Backport es_fopemem_init from master.Werner Koch2013-07-031-0/+3
| | | | | | * common/estream.c (es_fopenmem_init): New. Signed-off-by: Werner Koch <[email protected]>
* estream: New function es_fclose_snatch.Werner Koch2013-07-011-0/+2
| | | | | | | | | | | | | | | * common/estream.c (cookie_ioctl_function_t): New type. (es_fclose_snatch): New function. (COOKIE_IOCTL_SNATCH_BUFFER): New constant. (struct estream_internal): Add field FUNC_IOCTL. (es_initialize): Clear FUNC_IOCTL. (es_func_mem_ioctl): New function. (es_fopenmem): Init FUNC_IOCTL. -- (back ported from commit id 7737a2c269657189a583cde7f214f20871d264f8) Signed-off-by: Werner Koch <[email protected]>
* Do not use pth functions after pth_kill. Fixes bug#1320.Werner Koch2011-04-291-0/+2
| | | | | | | | | | | | | | Fabian Keil found the reason for a SIGBUS: In the "gpg-agent --daemon" case, main() calls pth_kill() after the client has been forked, so when es_deinit() is called on exit, acquiring the estream_list_lock seems to cause pth to dereference a pointer located in a memory region that has previously been free()'d. My approach to fix it is different than his suggestion. It should allow to continue all estream operations after a pth_kill except for restarting pth.
* Add gpgtar backportWerner Koch2011-01-111-4/+65
|
* Updated estream.Werner Koch2007-08-221-4/+4
| | | | | More changes for Windows.
* Changed to GPLv3.Werner Koch2007-07-041-5/+3
| | | | | Removed intl/.
* Fixed a problem in estream-printf.c.Werner Koch2007-06-251-4/+12
| | | | | Changes for Windows (gpgsm -k does now work). Minor cleanups.
* Adjusted symbols for printf and updated to latest version.Werner Koch2007-05-151-8/+94
|
* Use estream_asprintf instead of the GNU asprintf.Werner Koch2007-05-151-2/+2
|
* Changes to let the key listing use estream to help systems withoutWerner Koch2007-03-191-0/+17
| | | | | funopen.
* Changed HTTP API.Werner Koch2006-08-141-0/+4
|
* Updated FSF's address.Werner Koch2006-06-201-18/+19
|
* gcc-4 defaults forced me to edit many many files to get rid of theWerner Koch2005-06-161-4/+4
| | | | | | | char * vs. unsigned char * warnings. The GNU coding standards used to say that these mismatches are okay and better than a bunch of casts. Obviously this has changed now.
* * AUTHORS: Copied from 1.4 and edited to refelct the changes inWerner Koch2005-02-031-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1.9. * agent.h (agent_exit): Add JNLIB_GCC_A_NR to indicate that this function won't return. * gpg-agent.c (check_for_running_agent): Initialize pid to a default value if not needed. * command-ssh.c: Removed stdint.h. s/byte_t/unsigned char/, s/uint32/u32/ becuase that is what we have always used in GnuPG. (ssh_request_specs): Moved to top of file. (ssh_key_types): Ditto. (make_cstring): Ditto. (data_sign): Don't use a variable for the passphrase prompt, make it translatable. (ssh_request_process): * findkey.c (modify_description): Renamed arguments for clarity, polished documentation. Make comment a C-string. Fixed case of DESCRIPTION being just "%". (agent_key_from_file): Make sure comment string to a C-string. * gpg-agent.c (create_socket_name): Cleanup the implemntation, use DIMof, agent_exit, removed superflous args and return the allocated string as value. Documented. Changed callers. (create_server_socket): Cleanups similar to above. Changed callers. (cleanup_do): Renamed to .. (remove_socket): .. this. Changed caller. (handle_connections): The signals are to be handled in the select and not in the accept. Test all FDs after returning from a select. Remove the event tests from the accept calls. The select already assured that the accept won't block.
* 2005-01-26 Moritz Schulte <[email protected]>Moritz Schulte2005-01-261-0/+201
* Makefile.am (libcommon_a_SOURCES): New source files: estream.c, estream.h. * estream.c, estream.h: New files.