[#69616] [Ruby trunk - Feature #11258] add 'x' mode character for O_EXCL — cremno@...
Issue #11258 has been updated by cremno phobia.
3 messages
2015/06/16
[#69643] [Ruby trunk - Misc #11276] [RFC] compile.c: convert to use ccan/list — normalperson@...
Issue #11276 has been updated by Eric Wong.
3 messages
2015/06/17
[#69751] [Ruby trunk - Bug #11001] 2.2.1 Segmentation fault in reserve_stack() function. — kubo@...
Issue #11001 has been updated by Takehiro Kubo.
3 messages
2015/06/27
[ruby-core:69748] [Ruby trunk - Feature #11312] [Open] Add Resolv::DNS::Resource::IN::SPF
From:
postmodern.mod3@...
Date:
2015-06-26 18:58:50 UTC
List:
ruby-core #69748
Issue #11312 has been reported by Hal Brodigan.
----------------------------------------
Feature #11312: Add Resolv::DNS::Resource::IN::SPF
https://bugs.ruby-lang.org/issues/11312
* Author: Hal Brodigan
* Status: Open
* Priority: Normal
* Assignee:
----------------------------------------
The SPF type record (RFC4408 Section 3.1.1) is quite common now. The resolv library should probably support it. As a workaround I monkey patched in the resource class:
class Resolv::DNS::Resource::IN::SPF < Resolv::DNS::Resource::IN::TXT
# resolv.rb doesn't define an SPF resource type.
TypeValue = 99
ClassValue = Resolv::DNS::Resource::IN::ClassValue
Resolv::DNS::Resource::ClassHash[[TypeValue, ClassValue]] = self
end
I could formalize my monkeypatch into an actual patch. I would just need to know whether SPF should be listed in the `ClassInsensitiveTypes` array.
--
https://bugs.ruby-lang.org/