From 6350f796fdd1c7519c35a9cd71b33b6dafc5ed3a Mon Sep 17 00:00:00 2001 From: NIIBE Yutaka Date: Wed, 17 May 2023 10:55:17 +0900 Subject: w32: Cleaner semantics for PID and Process handle. * src/assuan-defs.h (struct assuan_context_s): Introduce SERVER_PROC member. Clarify the use of PROCESS_ID and PID. Introduce assuan_pid_t for internal use of process id or handle. * src/assuan.h.in: Follow the change. * src/assuan.c (assuan_new_ext): Likewise. * src/client.c (_assuan_client_finish): Likewise. * src/assuan-pipe-connect.c (pipe_connect): Likewise. * src/server.c (_assuan_server_finish): Likewise. * src/system-posix.c: Likewise. * src/system-w32.c: Likewise. * src/system.c: Likewise. * src/assuan-pipe-server.c (assuan_init_pipe_server) [HAVE_W32_SYSTEM]: Exclude the use of _assuan_pipe_connect_pid. * src/assuan-socket-server.c (accept_connection_bottom) [HAVE_W32_SYSTEM]: Exclude the use of the member peercred.pid. * src/assuan-socket.c (_assuan_sock_check_nonce): Support Cygwin Unix domain emulation for having valid client process ID. * src/context.c (assuan_get_pid): Clarify the use cases. * src/posix-types.inc.h, src/w32-types.inc.h: Introduce assuan_pid_t. -- GnuPG-bug-id: 6487 Signed-off-by: NIIBE Yutaka --- src/posix-types.inc.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/posix-types.inc.h') diff --git a/src/posix-types.inc.h b/src/posix-types.inc.h index e3810b3..03f7007 100644 --- a/src/posix-types.inc.h +++ b/src/posix-types.inc.h @@ -21,4 +21,5 @@ ## This file is included by the mkheader tool. Lines starting with ## a double hash mark are not copied to the destination file. typedef struct msghdr *assuan_msghdr_t; +typedef pid_t assuan_pid_t; ##EOF## -- cgit v1.2.3