(Tokenizer st, Name origin)
| 58 | } |
| 59 | |
| 60 | void |
| 61 | rdataFromString(Tokenizer st, Name origin) throws IOException { |
| 62 | String addr = st.getString(); |
| 63 | this.address = checkAndConvertAddress(addr); |
| 64 | if (this.address == null) |
| 65 | throw st.exception("invalid PSDN address " + addr); |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * Returns the X.25 PSDN address. |
nothing calls this directly
no test coverage detected