< :前の番号
^ :番号順リスト
> :次の番号
P :前の記事(スレッド移動)
N :次の記事(スレッド移動)
|<:前のスレッド
>|:次のスレッド
^ :返事先
_:自分への返事
>:同じ返事先を持つ記事(前)
<:同じ返事先を持つ記事(後)
---:分割してスレッド表示、再表示
| :分割して(縦)スレッド表示、再表示
~ :スレッドのフレーム消去
.:インデックス
..:インデックスのインデックス
Issue #11312 has been updated by Tomoyuki Chikanaga.
Assignee set to Akira Tanaka
----------------------------------------
Feature #11312: Add Resolv::DNS::Resource::IN::SPF
https://bugs.ruby-lang.org/issues/11312#change-53221
* Author: Hal Brodigan
* Status: Open
* Priority: Normal
* Assignee: Akira Tanaka
----------------------------------------
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/