From: Bob Halley Date: Tue, 10 Jan 2017 13:53:32 +0000 (-0800) Subject: add autodoc mode to comments; document QR X-Git-Tag: v1.16.0~80 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7978b59fbf96b933287adfa5e160c5ee9270dbc5;p=thirdparty%2Fdnspython.git add autodoc mode to comments; document QR --- diff --git a/dns/flags.py b/dns/flags.py index a6bc0960..e1d993bf 100644 --- a/dns/flags.py +++ b/dns/flags.py @@ -1,4 +1,4 @@ -# Copyright (C) 2001-2007, 2009-2011 Nominum, Inc. +# Copyright (C) 2001-2017 Nominum, Inc. # # Permission to use, copy, modify, and distribute this software and its # documentation for any purpose with or without fee is hereby granted, @@ -17,23 +17,24 @@ # Standard DNS flags +#: Query Response QR = 0x8000 -# Authoritative Answer +#: Authoritative Answer AA = 0x0400 -# Truncated Response +#: Truncated Response TC = 0x0200 -# Recursion Desired +#: Recursion Desired RD = 0x0100 -# Recursion Available +#: Recursion Available RA = 0x0080 -# Authentic Data +#: Authentic Data AD = 0x0020 -# Checking Disabled +#: Checking Disabled CD = 0x0010 # EDNS flags -# DNSSEC answer OK +#: DNSSEC answer OK DO = 0x8000 _by_text = {