kandi X-RAY | hrr-chat Summary
kandi X-RAY | hrr-chat Summary
hrr-chat is a Ruby library. hrr-chat has no bugs, it has no vulnerabilities and it has low support. You can download it from GitHub.
###server/logger.rb 書き込みのログを保存するチャットサーバー. 書き込みは12347番ポートへsocket接続により可能,受け付ける形式は "NAME|LINE" で,[TIME, NAME, LINE] として保存する. 読み込みは12346番ポートへsocket接続し,クライアントが現在持っているログの行数(初期値:-1)を受け取り,それ以降のログを返す. 12348番ポートも同様に読み込みを受け付けるが,socket接続への返答を,ログが追加されるまで,もしくは10秒間待つ. httpd_integrate-cgi.rbへのログ出力において,ログが巨大だとタイムアウトするレベルで処理に時間がかかるため,さかのぼれる行数を1000に制限(2013/09/10時点).. ###server/httpd.rb webクライアントからの書き込み,読み込み接続を受け付けるHPPPサーバー. 10080番ポートで待ち受ける. /cgi-bin/への要求を,./cgi-bin/への要求とみなし,./cgi-bin/以下のRubyスクリプトをCGIとして起動する.. ###server/httpd_integrate-cgi.rb httpd.rbと同様,webクライアントからの書き込み,読み込み接続を受け付けるHPPPサーバー. /cgi-bin/への要求を,Rubyスクリプトを起動するのではなく,内部の関数(スレッド?)で実行する. GETメソッドによる要求へのレスポンスは未実装(2013/09/10時点). 10080番ポートで待ち受ける.. ###server/cgi-bin/viewer_js-wait-cgi.rb numを受け取り,logger.rbの12346番ポートに接続し,ログを読み込む. webブラウザへの返答を,スクリプト内でループすることにより,ログが追加されるまで,もしくは10秒間待つ. logger.rbへ0.1秒毎にsocket接続して新規ログを問い合わせる.. ###client/terminal/sender.rb sender.rb [-p, --port=PORT] [-n, --name=NAME] [HOSTNAME] logger.rbへ書き込みを行うクライアント. 起動後,インタラクティブに書き込みを行う. デフォルトは,port=12347,name=名無し,hostname=localhost.. ###client/terminal/sender_auto.rb sender_auto.rb [-p, --port=PORT] [-n, --name=NAME] [-m, --max=MAX] [-i, --interval=INTERVAL] [HOSTNAME] logger.rbへ,INTERVAL秒間隔でMAX回,'x'*(rand(40)+1)を書き込むクライアント. デフォルトは,port=12347,name=名無し,hostname=localhost,max=1,interval=0.5.. ###client/terminal/viewer.rb viewer.rb [-p, --port=PORT] [HOSTNAME] logger.rbから読み込みを行うクライアント. 0.1秒毎にlogger.rbへ問い合わせる. デフォルトは,port=12346,hostname=localhost.. ###client/terminal/viewer_long-polling.rb viewer_long-polling.rb [-p, --port=PORT] [HOSTNAME] logger.rbから読み込みを行うクライアント. デフォルトは,port=12348,hostname=localhost. 新規ログを待ち(12348番ポートのlogger.rbの機能),ログの取得後すぐに再問い合わせを行う.. ###web/ webブラウザからHTTPサーバーに接続するクライアント群. terminal/のsender*.rbとviewer*.rbが統合されている. javascriptとXMLHttpRequestにより,Ajax的な操作を実現している.. ###pseudo-web/sender.rb sender.rb [-p, --port=PORT] [-n, --name=NAME] [HOSTNAME] 書き込みを行うクライアント. 起動後,インタラクティブに書き込みを行う. デフォルトは,port=10080,name=名無し,hostname=localhost.. ###pseudo-web/sender_auto.rb sender_auto.rb [-p, --port=PORT] [-n, --name=NAME] [-m, --max=MAX] [-i, --interval=INTERVAL] [HOSTNAME] INTERVAL秒間隔でMAX回,'x'*(rand(40)+1)を書き込むクライアント. デフォルトは,port=10080,name=名無し,hostname=localhost,max=1,interval=0.5.. ###pseudo-web/async.rb async.rb [-p, --port=PORT] [HOSTNAME] HTTPサーバー(/cgi-bin/viewer.rb)へ,0.1秒毎にログを問い合わせるクライアント. 書き込み,読み込み共にPOSTメソッドを用いる. デフォルトは,port=10080,hostname=localhost.. ###pseudo-web/async_js-wait-cgi.rb async_js-wait-cgi.rb [-p, --port=PORT] [HOSTNAME] /cgi-bin/viewer_js-wait-cgi.rbに新規ログを問い合わせ,ログの取得後すぐに再問い合わせを行う. 書き込み,読み込み共にPOSTメソッドを用いる. デフォルトは,port=10080,hostname=localhost.. ###pseudo-web/async_cgi-wait-logger.rb async_cgi-wait-logger.rb [-p, --port=PORT] [HOSTNAME] /cgi-bin/viewer_cgi-wait-logger.rbに新規ログを問い合わせ,ログの取得後すぐに再問い合わせを行う. 書き込み,読み込み共にPOSTメソッドを用いる. デフォルトは,port=10080,hostname=localhost..
###server/logger.rb 書き込みのログを保存するチャットサーバー. 書き込みは12347番ポートへsocket接続により可能,受け付ける形式は "NAME|LINE" で,[TIME, NAME, LINE] として保存する. 読み込みは12346番ポートへsocket接続し,クライアントが現在持っているログの行数(初期値:-1)を受け取り,それ以降のログを返す. 12348番ポートも同様に読み込みを受け付けるが,socket接続への返答を,ログが追加されるまで,もしくは10秒間待つ. httpd_integrate-cgi.rbへのログ出力において,ログが巨大だとタイムアウトするレベルで処理に時間がかかるため,さかのぼれる行数を1000に制限(2013/09/10時点).. ###server/httpd.rb webクライアントからの書き込み,読み込み接続を受け付けるHPPPサーバー. 10080番ポートで待ち受ける. /cgi-bin/への要求を,./cgi-bin/への要求とみなし,./cgi-bin/以下のRubyスクリプトをCGIとして起動する.. ###server/httpd_integrate-cgi.rb httpd.rbと同様,webクライアントからの書き込み,読み込み接続を受け付けるHPPPサーバー. /cgi-bin/への要求を,Rubyスクリプトを起動するのではなく,内部の関数(スレッド?)で実行する. GETメソッドによる要求へのレスポンスは未実装(2013/09/10時点). 10080番ポートで待ち受ける.. ###server/cgi-bin/viewer_js-wait-cgi.rb numを受け取り,logger.rbの12346番ポートに接続し,ログを読み込む. webブラウザへの返答を,スクリプト内でループすることにより,ログが追加されるまで,もしくは10秒間待つ. logger.rbへ0.1秒毎にsocket接続して新規ログを問い合わせる.. ###client/terminal/sender.rb sender.rb [-p, --port=PORT] [-n, --name=NAME] [HOSTNAME] logger.rbへ書き込みを行うクライアント. 起動後,インタラクティブに書き込みを行う. デフォルトは,port=12347,name=名無し,hostname=localhost.. ###client/terminal/sender_auto.rb sender_auto.rb [-p, --port=PORT] [-n, --name=NAME] [-m, --max=MAX] [-i, --interval=INTERVAL] [HOSTNAME] logger.rbへ,INTERVAL秒間隔でMAX回,'x'*(rand(40)+1)を書き込むクライアント. デフォルトは,port=12347,name=名無し,hostname=localhost,max=1,interval=0.5.. ###client/terminal/viewer.rb viewer.rb [-p, --port=PORT] [HOSTNAME] logger.rbから読み込みを行うクライアント. 0.1秒毎にlogger.rbへ問い合わせる. デフォルトは,port=12346,hostname=localhost.. ###client/terminal/viewer_long-polling.rb viewer_long-polling.rb [-p, --port=PORT] [HOSTNAME] logger.rbから読み込みを行うクライアント. デフォルトは,port=12348,hostname=localhost. 新規ログを待ち(12348番ポートのlogger.rbの機能),ログの取得後すぐに再問い合わせを行う.. ###web/ webブラウザからHTTPサーバーに接続するクライアント群. terminal/のsender*.rbとviewer*.rbが統合されている. javascriptとXMLHttpRequestにより,Ajax的な操作を実現している.. ###pseudo-web/sender.rb sender.rb [-p, --port=PORT] [-n, --name=NAME] [HOSTNAME] 書き込みを行うクライアント. 起動後,インタラクティブに書き込みを行う. デフォルトは,port=10080,name=名無し,hostname=localhost.. ###pseudo-web/sender_auto.rb sender_auto.rb [-p, --port=PORT] [-n, --name=NAME] [-m, --max=MAX] [-i, --interval=INTERVAL] [HOSTNAME] INTERVAL秒間隔でMAX回,'x'*(rand(40)+1)を書き込むクライアント. デフォルトは,port=10080,name=名無し,hostname=localhost,max=1,interval=0.5.. ###pseudo-web/async.rb async.rb [-p, --port=PORT] [HOSTNAME] HTTPサーバー(/cgi-bin/viewer.rb)へ,0.1秒毎にログを問い合わせるクライアント. 書き込み,読み込み共にPOSTメソッドを用いる. デフォルトは,port=10080,hostname=localhost.. ###pseudo-web/async_js-wait-cgi.rb async_js-wait-cgi.rb [-p, --port=PORT] [HOSTNAME] /cgi-bin/viewer_js-wait-cgi.rbに新規ログを問い合わせ,ログの取得後すぐに再問い合わせを行う. 書き込み,読み込み共にPOSTメソッドを用いる. デフォルトは,port=10080,hostname=localhost.. ###pseudo-web/async_cgi-wait-logger.rb async_cgi-wait-logger.rb [-p, --port=PORT] [HOSTNAME] /cgi-bin/viewer_cgi-wait-logger.rbに新規ログを問い合わせ,ログの取得後すぐに再問い合わせを行う. 書き込み,読み込み共にPOSTメソッドを用いる. デフォルトは,port=10080,hostname=localhost..
Support
Quality
Security
License
Reuse
Support
hrr-chat has a low active ecosystem.
It has 0 star(s) with 0 fork(s). There are 1 watchers for this library.
It had no major release in the last 6 months.
hrr-chat has no issues reported. There are no pull requests.
It has a neutral sentiment in the developer community.
The latest version of hrr-chat is current.
Quality
hrr-chat has no bugs reported.
Security
hrr-chat has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.
License
hrr-chat does not have a standard license declared.
Check the repository for any license declaration and review the terms closely.
Without a license, all rights are reserved, and you cannot use the library in your applications.
Reuse
hrr-chat releases are not available. You will need to build from source code and install.
Installation instructions are not available. Examples and code snippets are available.
Top functions reviewed by kandi - BETA
kandi's functional review helps you automatically verify the functionalities of the libraries and avoid rework.
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of hrr-chat
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of hrr-chat
hrr-chat Key Features
No Key Features are available at this moment for hrr-chat.
hrr-chat Examples and Code Snippets
No Code Snippets are available at this moment for hrr-chat.
Community Discussions
No Community Discussions are available at this moment for hrr-chat.Refer to stack overflow page for discussions.
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install hrr-chat
You can download it from GitHub.
On a UNIX-like operating system, using your system’s package manager is easiest. However, the packaged Ruby version may not be the newest one. There is also an installer for Windows. Managers help you to switch between multiple Ruby versions on your system. Installers can be used to install a specific or multiple Ruby versions. Please refer ruby-lang.org for more information.
On a UNIX-like operating system, using your system’s package manager is easiest. However, the packaged Ruby version may not be the newest one. There is also an installer for Windows. Managers help you to switch between multiple Ruby versions on your system. Installers can be used to install a specific or multiple Ruby versions. Please refer ruby-lang.org for more information.
Support
For any new features, suggestions and bugs create an issue on GitHub.
If you have any questions check and ask questions on community page Stack Overflow .
Find more information at:
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page