private static void restoreMetadata(
     SocketCommandServiceInfo info, TXTRecord txtRecord, String key) {
   byte[] bytes = txtRecord.getValue(key);
   info.setMetadata(key, bytes == null ? null : Util.decode(bytes));
 }