rtib (Tibor Repasi)
- Login: rtib
- Registered on: 04/04/2017
- Last sign in: 09/27/2019
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 2 | 2 |
Activity
10/16/2018
-
01:35 PM Ruby Feature #15226 (Rejected): Resolv::DNS unable to handle responses larger than default size
- The actual implementation of Resolve::DNS defines [UDPSize = 512](https://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/lib/resolv.rb?view=markup#l288) as default. There is no way to initialize a Resolv::DNS instance having non-default UDPS...
04/05/2017
-
07:20 AM Ruby Bug #13399: IPAddr accepts invalid address mask
- I've just applied the patch locally. It works as expected.
Thank you.
04/04/2017
-
09:31 AM Ruby Bug #13399 (Closed): IPAddr accepts invalid address mask
- API Class `IPAddr` can be initialised with e.g. '1.2.3.4/255.255.255.1', which is an invalid mask for an IPv4 address, however, `IPAddr.new` won't throw `ArgumentError`, nor `ip.ipv4?` will return `false`.
```ruby
$ cat iptest.rb
re...