Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
haoqu.ma
/
gotty
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 1bcc6bd9
authored
Oct 12, 2015
by
Iwasaki Yudai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change description of `--permit-arguments`
1 parent
589ec6b5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
.gotty
README.md
main.go
.gotty
View file @
1bcc6bd
...
@@ -57,7 +57,7 @@
...
@@ -57,7 +57,7 @@
// [bool] Accept only one client and exit gotty once the client exits
// [bool] Accept only one client and exit gotty once the client exits
// once = false
// once = false
// [bool]
Allow clients to send command line arguments
// [bool]
Permit clients to send command line arguments in URL (e.g. http://example.com:8080/?arg=AAA&arg=BBB)
// permit_arguments = false
// permit_arguments = false
// [object] Client terminal (hterm) preferences
// [object] Client terminal (hterm) preferences
...
...
README.md
View file @
1bcc6bd
...
@@ -68,7 +68,7 @@ By default, GoTTY starts a web server at port 8080. Open the URL on your web bro
...
@@ -68,7 +68,7 @@ By default, GoTTY starts a web server at port 8080. Open the URL on your web bro
--once Accept only one client and exit on disconnection [$GOTTY_ONCE]
--once Accept only one client and exit on disconnection [$GOTTY_ONCE]
--config "~/.gotty" Config file path [$GOTTY_CONFIG]
--config "~/.gotty" Config file path [$GOTTY_CONFIG]
--version, -v print the version
--version, -v print the version
--permit-arguments
Allow to send arguments like this http://example.com:8080/?arg=AAA&arg=BBB
--permit-arguments
Permit clients to send command line arguments in URL (e.g. http://example.com:8080/?arg=AAA&arg=BBB)
```
```
...
...
main.go
View file @
1bcc6bd
...
@@ -34,7 +34,7 @@ func main() {
...
@@ -34,7 +34,7 @@ func main() {
flag
{
"reconnect"
,
""
,
"Enable reconnection"
},
flag
{
"reconnect"
,
""
,
"Enable reconnection"
},
flag
{
"reconnect-time"
,
""
,
"Time to reconnect"
},
flag
{
"reconnect-time"
,
""
,
"Time to reconnect"
},
flag
{
"once"
,
""
,
"Accept only one client and exit on disconnection"
},
flag
{
"once"
,
""
,
"Accept only one client and exit on disconnection"
},
flag
{
"permit-arguments"
,
""
,
"
Allow to send arguments like this http://example.com:8080/?arg=AAA&arg=BBB
"
},
flag
{
"permit-arguments"
,
""
,
"
Permit clients to send command line arguments in URL (e.g. http://example.com:8080/?arg=AAA&arg=BBB)
"
},
}
}
mappingHint
:=
map
[
string
]
string
{
mappingHint
:=
map
[
string
]
string
{
...
...
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment