SHDnsServer.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:0k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.chain;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public class SHDnsServer extends DnsServer {
  7. @Override
  8. protected Recorder echo(String domain) {
  9. Recorder recorder= super.echo(domain);
  10. recorder.setOwner("上海DNS服务器");
  11. return recorder;
  12. }
  13. //定义上海的DNS服务器能处理的级别
  14. @Override
  15. protected boolean isLocal(String domain) {
  16. return domain.endsWith(".sh.cn");
  17. }
  18. }