diff options
author | Valentin Bartenev <vbart@nginx.com> | 2018-06-06 16:53:35 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2018-06-06 16:53:35 +0300 |
commit | ceeb30188152426d76eac1f40ca8ceb24ddb5d0a (patch) | |
tree | 910a973b915b7320746d87b9088fd29b37aafe79 /src/nxt_application.h | |
parent | 857bddeea613cdf7ce0f9228ec6601285bf3bde7 (diff) | |
download | unit-ceeb30188152426d76eac1f40ca8ceb24ddb5d0a.tar.gz unit-ceeb30188152426d76eac1f40ca8ceb24ddb5d0a.tar.bz2 |
Go: specifying command line arguments to the executable.
This closes #110 issue on GitHub.
Diffstat (limited to '')
-rw-r--r-- | src/nxt_application.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nxt_application.h b/src/nxt_application.h index 6ac7fbd3..96af1d67 100644 --- a/src/nxt_application.h +++ b/src/nxt_application.h @@ -53,7 +53,8 @@ typedef struct { typedef struct { - char *executable; + char *executable; + nxt_conf_value_t *arguments; } nxt_go_app_conf_t; |