fluent-plugin-secure-forward 0.1.7 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +11 -0
- data/fluent-plugin-secure-forward.gemspec +1 -1
- data/lib/fluent/plugin/input_session.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9299ae4d7e763b5778a45ce5c98563f3ecc4e86f
|
|
4
|
+
data.tar.gz: b187ec1e5f56f6ad7cb854241d88b36ecae9a9f3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d5666bc81bc5aa40d47996069b1192368080dbad8e17245cefd7929bf3962f34c46623d841a91007929a414cca24566d86da45d2f4a74e62e8a2eb7acd551470
|
|
7
|
+
data.tar.gz: e7aee097f8536c0dde5adbda7637f02ee19c829feeeff003bed3de19cedd2b9e472d5216c040196f5a94276a13a5bb6faf9d9feb6c03fe88b19ecc8704755462
|
data/README.md
CHANGED
|
@@ -10,6 +10,17 @@ This plugin makes you to be able to:
|
|
|
10
10
|
* authenticate by shared\_key check from both of client(out\_secure\_forward) and server(in\_secure\_forward)
|
|
11
11
|
* authenticate with username / password pairs
|
|
12
12
|
|
|
13
|
+
## Installation
|
|
14
|
+
install with gem or fluent-gem command as:
|
|
15
|
+
|
|
16
|
+
`````
|
|
17
|
+
### native gem
|
|
18
|
+
$ gem install fluent-plugin-secure-forward
|
|
19
|
+
|
|
20
|
+
### fluentd gem
|
|
21
|
+
$ fluent-gem install fluent-plugin-secure-forward
|
|
22
|
+
`````
|
|
23
|
+
|
|
13
24
|
## Configuration
|
|
14
25
|
|
|
15
26
|
### SecureForwardInput
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
2
|
Gem::Specification.new do |gem|
|
|
3
3
|
gem.name = "fluent-plugin-secure-forward"
|
|
4
|
-
gem.version = "0.1.
|
|
4
|
+
gem.version = "0.1.8"
|
|
5
5
|
gem.authors = ["TAGOMORI Satoshi"]
|
|
6
6
|
gem.email = ["tagomoris@gmail.com"]
|
|
7
7
|
gem.summary = %q{Fluentd input/output plugin to forward over SSL with authentications}
|
|
@@ -150,7 +150,7 @@ class Fluent::SecureForwardInput::Session
|
|
|
150
150
|
return
|
|
151
151
|
end
|
|
152
152
|
|
|
153
|
-
proto, port, host, ipaddr = @socket.io.
|
|
153
|
+
proto, port, host, ipaddr = @socket.io.peeraddr
|
|
154
154
|
@node = check_node(host, ipaddr, port, proto)
|
|
155
155
|
if @node.nil? && (! @receiver.allow_anonymous_source)
|
|
156
156
|
$log.warn "Connection required from unknown host '#{host}' (#{ipaddr}), disconnecting..."
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-secure-forward
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- TAGOMORI Satoshi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-03-
|
|
11
|
+
date: 2014-03-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fluentd
|