Skip to content

Commit

Permalink
Support IPv6 UDP sockets
Browse files Browse the repository at this point in the history
  • Loading branch information
UXabre authored and Arend Lapere committed Nov 21, 2020
1 parent 8d4ac25 commit ceb3d13
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 3.4.5
- Added support for listening on IPv6 addresses

## 3.4.4
- Refactor: avoid global side-effect + cleanup [#62](https://github.com/logstash-plugins/logstash-input-syslog/pull/62)
* avoid setting `BasicSocket.do_not_reverse_lookup` as it has side effects for others
Expand Down
6 changes: 5 additions & 1 deletion lib/logstash/inputs/syslog.rb
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,11 @@ def udp_listener(output_queue)
@logger.info("Starting syslog udp listener", :address => "#{@host}:#{@port}")

@udp.close if @udp
@udp = UDPSocket.new(Socket::AF_INET)
if IPAddr.new(@host).ipv6?
@udp = UDPSocket.new(Socket::AF_INET6)
elsif IPAddr.new(@host).ipv4?
@udp = UDPSocket.new(Socket::AF_INET)
end
@udp.do_not_reverse_lookup = true
@udp.bind(@host, @port)

Expand Down
2 changes: 1 addition & 1 deletion logstash-input-syslog.gemspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Gem::Specification.new do |s|

s.name = 'logstash-input-syslog'
s.version = '3.4.4'
s.version = '3.4.5'
s.licenses = ['Apache License (2.0)']
s.summary = "Reads syslog messages as events"
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
Expand Down

0 comments on commit ceb3d13

Please sign in to comment.