├── .idea ├── dictionaries │ └── wangchao.xml ├── modules.xml ├── pddns.iml ├── php.xml ├── vcs.xml └── workspace.xml ├── FakeDNSQuery.php ├── README.md ├── cliDaemon.php ├── data.txt └── index.php /.idea/dictionaries/wangchao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | wangchao 5 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/pddns.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/php.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 13 | 14 | 31 | 34 | 37 | 41 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | echo 111 | FakeDNSQuery 112 | $stop 113 | $this->fakeDnsIpMap 114 | $reloadTime 115 | reloadFakeDnsIpMap 116 | $fakeDnsKeywords 117 | fakeDnsKeywords 118 | 119 | 120 | 121 | 123 | 124 | 135 | 136 | 137 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 |