(Tokenizer st, Name origin)
| 60 | } |
| 61 | |
| 62 | void |
| 63 | rdataFromString(Tokenizer st, Name origin) throws IOException { |
| 64 | flags = st.getUInt8(); |
| 65 | try { |
| 66 | tag = byteArrayFromString(st.getString()); |
| 67 | value = byteArrayFromString(st.getString()); |
| 68 | } |
| 69 | catch (TextParseException e) { |
| 70 | throw st.exception(e.getMessage()); |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | String |
| 75 | rrToString() { |
nothing calls this directly
no test coverage detected