openbsd-ports/comms/amtterm/patches/patch-redir_h
2022-03-11 18:26:24 +00:00

24 lines
579 B
Plaintext

Add SSL/auth code
https://github.com/Openwsman/wsmancli/issues/10#issuecomment-751253133
Index: redir.h
--- redir.h.orig
+++ redir.h
@@ -26,12 +26,16 @@ struct redir {
unsigned char type[4];
int verbose;
int trace;
+ int legacy;
enum redir_state state;
unsigned char err[128]; // state == REDIR_ERROR
int sock;
unsigned char buf[64];
unsigned int blen;
+
+ void *cacert;
+ void *ctx;
/* callbacks */
void *cb_data;