mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-04-08 18:35:05 +02:00
PowerShell/Win32-OpenSSH#1211 PowerShell/Win32-OpenSSH#1082 Added support for posix_spawnp that executes the command directly instead of appending path. (SH_ASKPASS and proxy command use this). Refactored posix spawn commandline building logic to automatically account for Windows CRT escaping rules on all arguments.
8 lines
208 B
C
8 lines
208 B
C
#ifndef _PAL_DOEXEC_H
|
|
#define _PAL_DOEXEC_H
|
|
|
|
#include "session.h"
|
|
|
|
int do_exec_pty(struct ssh *, Session *, const char *);
|
|
int do_exec_no_pty(struct ssh *, Session *, const char *);
|
|
#endif /* _PAL_DOEXEC_H */ |