Files
c/kubernetes/websocket/kube_exec.h

16 lines
343 B
C
Raw Normal View History

2021-06-06 13:06:50 +08:00
#ifndef _KUBE_EXEC_H
#define _KUBE_EXEC_H
#include "wsclient.h"
#ifdef __cplusplus
extern "C" {
#endif
int kube_exec(wsclient_t * wsc, const char *namespace_, const char *pod_name, const char *container_name, int stdin, int stdout, int tty, const char *command);
#ifdef __cplusplus
}
#endif
#endif /* _EXEC_H */