aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Changes to support gpg-error style error codes.Werner Koch2006-09-061-0/+34
|
* Fixed and clarified copyright noticesWerner Koch2005-10-241-0/+7
|
* 2005-10-08 Marcus Brinkmann <[email protected]>Marcus Brinkmann2005-10-081-0/+7
| | | | | | | | * assuan-defs.h (setenv, unsetenv, clearenv) [!HAVE_SETENV]: Define to _assuan_*. * setenv.c: Include "assuan-defs.h". (__add_to_environ): Make static.
* 2005-10-07 Marcus Brinkmann <[email protected]>Marcus Brinkmann2005-10-071-0/+11
| | | | | | | | | | | | | | | | | | | | * configure.ac: Invoke AC_CANONICAL_HOST. Define _XOPEN_SOURCE, _XOPEN_SOURCE_EXTENDED and __EXTENSIONS__ on Solaris. Add stpcy as replacement function. Add setenv as replacement function (and check for unistd.h). src/ 2005-10-06 Marcus Brinkmann <[email protected]> * assuan-defs.h (memrchr) [!HAVE_MEMRCHR]: New prototype. (stpcpy) [!HAVE_STPCPY]: Likewise. * stpcpy.c: New LGPL'ed file from the GNU C Library. * setenv.c: New file. * assuan-domain-connect.c (read_int): New function. (write_int): New function. (domain_reader): Use read_int. (domain_sendfd): Use write_int.
* 2005-10-01 Marcus Brinkmann <[email protected]>Marcus Brinkmann2005-10-011-0/+6
| | | | | | | | | * assuan.h (assuan_pipe_connect, assuan_pipe_connect2): Make type of ARGV parameter const in prototype. * assuan-pipe-connect.c (assuan_pipe_connect, assuan_pipe_connect2): Likewise in declaration. (assuan_pipe_connect2): Add braindead cast to make execv happy.
* 2005-10-01 Marcus Brinkmann <[email protected]>Marcus Brinkmann2005-10-011-0/+8
| | | | | | | | | * assuan-client.c (assuan_transact): Change LINE, S and D from unsigned char * to char * to silence gcc warning. * assuan-util.c (_assuan_log_sanitized_string): Add explicit cast to silence gcc warning. * assuan-inquire.c (assuan_inquire): Likewise.
* 2005-09-08 Marcus Brinkmann <[email protected]>Marcus Brinkmann2005-09-081-0/+5
| | | | | | * assuan-pipe-connect.c (assuan_pipe_connect2): Add missing declaration of PID.
* * mkerrors: Include config.h into assuan-errors.c. This isWerner Koch2005-08-091-0/+11
| | | | | | | | | | | required so that assuan.h knows about the W32 macro. * assuan.h [_ASSUAN_EXT_SYM_PREFIX]: New. * assuan-io.c [_ASSUAN_NO_PTH]: New. * assuan-pipe-connect.c (fix_signals) [_ASSUAN_NO_FIXED_SIGNALS]: New. (assuan_pipe_connect2) [_ASSUAN_USE_DOUBLE_FORK]: Use double fork. (fix_signals) [_ASSUAN_USE_DOUBLE_FORK]: Do not wait..
* * assuan-util.c (assuan_set_flag, assuan_get_flag): New.Werner Koch2005-05-221-0/+9
| | | | | | | | | * assuan-defs.h (struct assuan_context_s): New field flags. * assuan.h (assuan_flag_t): New with one flag value ASSUAN_NO_WAITPID for now. * assuan-pipe-connect.c (do_finish): Take care of the no_waitpid flag.
* (_assuan_calloc): Avoid integer overflow.Werner Koch2005-04-041-0/+4
|
* (struct assuan_io): Renamed elements READ andWerner Koch2005-03-221-0/+11
| | | | | | WRITE to READFNC and WRITEFNC to avoid problems with read defined as macros. Changed callers. Noted by Ville Skytt��.
* (assuan_socket_connect): Allow for aWerner Koch2004-12-201-0/+5
| | | | | drive letter in the path.
* (assuan_init_pipe_server) [W32]: Map fileWerner Koch2004-12-191-0/+5
| | | | | descriptors using _get_osfhandle.
* 2004-12-19 Moritz Schulte <[email protected]>Moritz Schulte2004-12-191-0/+5
| | | | | | * assuan-pipe-connect.c (assuan_pipe_connect2): Removed "`" character at beginning of line 532.
* * autogen.sh: Add Option --build-w32.Werner Koch2004-12-181-0/+15
| | | | | | | | | | | * assuan-logging.c (_assuan_w32_strerror): New. * assuan-defs.h (w32_strerror): new. * assuan-pipe-connect.c (assuan_pipe_connect2, fix_signals): Factored signal code out to new function. (build_w32_commandline, create_inheritable_pipe): New. Taken from gnupg 1.9. (assuan_pipe_connect2) [W32]: Implemented for W32.
* * configure.ac: Define HAVE_W32_SYSTEM and HAVE_DOSISH_SYSTEM.Werner Koch2004-12-071-0/+10
| | | | | | | | | | Add -lwsock2 to the config lib flags for W32. * assuan-logging.c, assuan-io.c: Include config.h * assuan-pipe-connect.c (assuan_pipe_connect2) [_WIN32]: Return error Not Imlemented.
* include/sys/types.hWerner Koch2004-11-271-0/+5
|
* Avoid warnings about unknown pragmas.Werner Koch2004-11-261-0/+4
|
* * assuan-logging.c (_assuan_log_printf): New.Werner Koch2004-11-241-0/+7
| | | | | | | | | | | * assuan-domain-connect.c (LOG): Removed and replaced all callers by _assuan_log_printf. This is needed for C89 and gcc 2.95 which both don't have C99 style variable arg macros. * assuan-pipe-connect.c (LOG): Ditto. * assuan-socket-connect.c (LOG): Ditto. * assuan-socket.c[!_WIN32]: Fixed includes.
* Small API update and Windows fixesWerner Koch2004-11-241-0/+8
|
* 2004-11-23 Timo Schulz <[email protected]>Timo Schulz2004-11-241-0/+17
| | | | | | | | | | | | | | | | | | * assuan-socket.c (_assuan_sock_connect): Get local port from the sun_path[] file. (_assuan_sock_bind): Write local port to the sun_path[] file. * assuan-socket-connect.c (assuan_socket_connect): Use DIRSEP_C for a better portability. (assuan-defs.h): Define DIRSEP_C. 2004-11-22 Timo Schulz <[email protected]> * assuan-io.c (_assuan_simple_read, _assuan_simple_write): W32 support. * assuan-socket.c (_assuan_close): New. (_assuan_sock_new): New. (_assuan_sock_bind): New.
* * assuan-socket-connect.c (LOG): Fixed macro to print not only theWerner Koch2004-11-161-0/+6
| | | | | | prefix. * assuan-domain-connect.c, assuan-socket-connect.c (LOG): Ditto.
* * assuan-socket-connect.c: Define SUN_LEN, AF_LOCAL and PF_LOCALWerner Koch2004-10-021-0/+6
| | | | | | if they are not available. * assuan-domain-connect.c: Define PF_LOCAL and AF_LOCAL if needed.
* 2004-06-23 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-06-231-0/+4
| | | | | | | | | | * configure.ac: Check for <sys/uio.h>. src/ 2004-06-23 Marcus Brinkmann <[email protected]> * assuan-domain-connect.c [HAVE_SYS_UIO_H]: Include <sys/uio.h>.
* * assuan-listen.c (assuan_set_hello_line, assuan_accept): AllowWerner Koch2004-05-111-0/+8
| | | | | | | | for multi line hello strings. * assuan-buffer.c (_assuan_write_line): New with parts of .. (assuan_write_line): .. factored out.
* * assuan-socket-connect.c: Include string.h.Werner Koch2004-04-291-0/+5
| | | | | * assuan-logging.c: Ditto.
* 2004-04-22 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-04-221-0/+4
| | | | | * libassuan.m4: Quote first argument to AC_DEFUN.
* * assuan-socket-server.c (accept_connection_bottom): Save the pidWerner Koch2004-04-211-0/+13
| | | | | | | | | | | | | of the peer if it is available. * assuan-socket-connect.c (assuan_socket_connect): Do not save the dummy SERVED_PID arg. * assuan-pipe-connect.c (do_finish): Don't wait if the pid is 0. (assuan_pipe_connect2): Store the parents pid in the environment of the child. * assuan-pipe-server.c (assuan_init_pipe_server): Initialize the peer's pid from the environment. * assuan-connect.c (assuan_get_pid): Do not return 0 as a PID.
* * assuan-socket-server.c, assuan-socket-connect.c: IncludesWerner Koch2004-04-191-0/+11
| | | | | | sys/types.h. Reported by Michael Nottebrock. * assuan-domain-connect.c: Ditto.
* Include <errno.h>. Reported by Bernd Kuhls.Werner Koch2004-03-141-0/+4
|
* About to release 0.6.4libassuan-0-6-4Werner Koch2004-02-201-0/+2
|
* (assuan_get_data_fp): Fail with ENOSYS if weWerner Koch2004-02-181-0/+5
| | | | | can't implement this.
* (memrchr): Fixed implementation. Taken from gpgme.Werner Koch2004-02-151-0/+4
|
* Removed the unneeded alloca.h.Werner Koch2004-02-131-0/+4
|
* (assuan_pipe_connect2): New as anWerner Koch2004-01-241-0/+5
| | | | | extension of assuan_pipe_connect. Made the latter call this one.
* (_assuan_cookie_write_data): Return theWerner Koch2004-01-141-0/+11
| | | | | | requested size to indicate successful operation. Fixes a spurious bug we previously fixed using fflush().
* Getting ready for a new releaseWerner Koch2003-12-181-0/+7
|
* * assuan-buffer.c: Changed formatting of the debug output prefix.Werner Koch2003-12-161-0/+8
| | | | | | | | * assuan-util.c (assuan_set_log_stream): Set global log stream if it has not been done yet. * assuan-logging.c (_assuan_set_default_log_stream): New. (assuan_set_assuan_log_prefix): New.
* * funopen.c (_assuan_funopen): Renamed from funopen, to keep theWerner Koch2003-12-111-0/+7
| | | | | | | name space clean and avoid duplicate definitions if another library uses the same replacement. * assuan-defs.h (funopen): Renamed prototype and add a macro.
* doc typo fixesWerner Koch2003-12-081-0/+4
|
* (process_request): Kludge to print better errorWerner Koch2003-11-121-0/+11
| | | | | messages for gpg-error enabled programs.
* 2003-11-11 Moritz Schulte <[email protected]>Moritz Schulte2003-11-111-0/+5
| | | | | | * assuan-socket-connect.c (assuan_socket_connect): Fix computation of socket address length.
* (assuan_inquire): Increase length of cmdbuf toWerner Koch2003-08-131-0/+5
| | | | | the Assuan limit.
* * mkerrors: Kludge to print libgpg-error values in an easierWerner Koch2003-07-031-0/+5
| | | | | readable way.
* * libassuan.m4: New. Based on libgrypt.m4.Werner Koch2003-04-291-0/+11
| | | | | | | | | | | * Makefile.am (m4data_DATA): New. * assuan.h (AssuanCommand): Removed. * assuan-handler.c: Remove the cmd_id element, (assuan_register_command): Likewise. Note that semantics changed. (_assuan_register_std_commands): Adjusted.
* 2003-02-22 Neal H. Walfield <[email protected]>Neal Walfield2003-02-221-0/+4
| | | | | * Makefile.am (bin_SCRIPTS): Renamed from bin_PROGRAMS.
* /Neal Walfield2003-02-181-0/+8
| | | | | | | | | | | | | | | | | | | 2003-02-18 Neal H. Walfield <[email protected]> * configure.ac: Fix typo. (AC_CONFIG_FILES): Remove common/Makefile.am. * common: Remove directory. src/ 2003-02-18 Neal H. Walfield <[email protected]> * Makefile.am (libassuan_a_LIBADD): New variable. * funopen.c: Move from ../common. * isascii.c: Likewise. * memrchr.c: Likewise. * putc_unlocked.c: Likewise.
* /Neal Walfield2003-02-181-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2003-02-18 Neal H. Walfield <[email protected]> * common: New directory. * Makefile.am (SUBDIRS): Add common. * configure.ac: Check for funopen. If not present, check for fopencookie and implement it in terms of that. Otherwise, fail. (AC_CONFIG_FILES): Add common/Makefile. src/ 2003-02-18 Neal H. Walfield <[email protected]> * assuan-handler.c (_IO_cookie_io_functions_t): Remove. (cookie_io_functions_t): Remove. (fopencookie): Remove prototype. (assuan_get_data_fp): Use funopen, not fopencookie. common/ 2003-02-18 Neal H. Walfield <[email protected]> * Makefile.am: New file. * funopen.c: New file. * isascii.c: Imported from newpg. * memrchr.c: Likewise. * putc_unlocked.c: Likewise.
* /Neal Walfield2003-02-181-0/+5
| | | | | | | | | | | | | | | | 2003-02-18 Neal H. Walfield <[email protected]> * configure.ac (AC_CONFIG_FILES): Add src/libassuan-config. (LIBASSUAN_CONFIG_LIBS, LIBASSUAN_CONFIG_CFLAGS): New variables. AC_SUBST them. src/ 2003-02-18 Neal H. Walfield <[email protected]> * libassuan-config.in: New file. * Makefile.am (bin_PROGRAMS): New variable.
* 2003-02-17 Neal H. Walfield <[email protected]>Neal Walfield2003-02-181-0/+4
| | | | | * .cvsignore: New file.