def parseLines(self, lines): """ Parse C{lines}. @param lines: lines to work on @type lines: iterable of L{bytes} """ ttl = 60 * 60 * 3 origin = self.origin self.records = {} for line in lines: if line[0] == b'$TTL': ttl = dns.str2time(line[1]) elif line[0] == b'$ORIGIN': origin = line[1] elif line[0] == b'$INCLUDE': raise NotImplementedError('$INCLUDE directive not implemented') elif line[0] == b'$GENERATE': raise NotImplementedError( '$GENERATE directive not implemented' ) else: self.parseRecordLine(origin, ttl, line) # If the origin changed, reflect that within the instance. self.origin = origin
def parseLines(self, lines): TTL = 60 * 60 * 3 ORIGIN = self.origin self.records = {} for (line, index) in zip(lines, range(len(lines))): if line[0] == '$TTL': TTL = dns.str2time(line[1]) elif line[0] == '$ORIGIN': ORIGIN = line[1] elif line[0] == '$INCLUDE': # XXX - oh, f**k me raise NotImplementedError('$INCLUDE directive not implemented') elif line[0] == '$GENERATE': raise NotImplementedError('$GENERATE directive not implemented') else: self.parseRecordLine(ORIGIN, TTL, line)
def _update_serial(self): self.soa[1].serial = dns.str2time(get_serial())
def __init__(self, address='0.0.0.0', ttl=None): if address is not None: address = socket.inet_aton(address) self.address = address self.ttl = str2time(ttl)
def __init__(self, record, ttl=None): record = record.split(b' ', 2) self.flags = int(record[0]) self.tag = record[1] self.value = record[2].replace(b'"', b'') self.ttl = dns.str2time(ttl)
def __init__(self, value, ttl=None): self.flags = 0 self.tag = 'issue' self.value = value self.ttl = dns.str2time(ttl)