Gnus development mailing list
 help / color / mirror / Atom feed
* SRV support for dns.el
@ 2004-05-15 20:25 Magnus Henoch
  2004-05-20 21:51 ` Lars Magne Ingebrigtsen
  0 siblings, 1 reply; 2+ messages in thread
From: Magnus Henoch @ 2004-05-15 20:25 UTC (permalink / raw)


[-- Attachment #1: Type: text/plain, Size: 310 bytes --]

The included patch enables dns.el to make SRV queries and parse the
results.  Can it be included in Gnus?

(SRV records are defined in RFC 2782.  In short, querying for
_foo._tcp.example.com returns the hostname and port number of the
server(s) providing service foo at example.com over TCP.)

Regards,
Magnus

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: dns.el.patch --]
[-- Type: text/x-patch, Size: 871 bytes --]

Index: lisp/dns.el
===================================================================
RCS file: /usr/local/cvsroot/gnus/lisp/dns.el,v
retrieving revision 7.4
diff -u -r7.4 dns.el
--- lisp/dns.el	18 Mar 2004 22:56:09 -0000	7.4
+++ lisp/dns.el	15 May 2004 20:21:11 -0000
@@ -56,6 +56,7 @@
     (MX 15)
     (TXT 16)
     (AAAA 28) ; RFC3596
+    (SRV 33) ; RFC2782
     (AXFR 252)
     (MAILB 253)
     (MAILA 254)
@@ -284,6 +285,11 @@
 		  (list 'retry (dns-read-int32))
 		  (list 'expire (dns-read-int32))
 		  (list 'minimum (dns-read-int32))))
+	   ((eq type 'SRV)
+	    (list (list 'priority (dns-read-bytes 2))
+		  (list 'weight (dns-read-bytes 2))
+		  (list 'port (dns-read-bytes 2))
+		  (list 'target (dns-read-name buffer))))
 	   ((eq type 'MX)
 	    (cons (dns-read-bytes 2) (dns-read-name buffer)))
 	   ((or (eq type 'CNAME) (eq type 'NS) (eq type 'PTR))

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: SRV support for dns.el
  2004-05-15 20:25 SRV support for dns.el Magnus Henoch
@ 2004-05-20 21:51 ` Lars Magne Ingebrigtsen
  0 siblings, 0 replies; 2+ messages in thread
From: Lars Magne Ingebrigtsen @ 2004-05-20 21:51 UTC (permalink / raw)


Magnus Henoch <mange@freemail.hu> writes:

> The included patch enables dns.el to make SRV queries and parse the
> results.  Can it be included in Gnus?

Thanks for the patch; I've applied it to No Gnus v0.3 (i. e., CVS).

-- 
(domestic pets only, the antidote for overdose, milk.)
  larsi@gnus.org * Lars Magne Ingebrigtsen




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2004-05-20 21:51 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-05-15 20:25 SRV support for dns.el Magnus Henoch
2004-05-20 21:51 ` Lars Magne Ingebrigtsen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).