├── .gitattributes ├── .gitignore ├── FiddlerCore4.chm ├── FiddlerCore4.chw ├── FiddlerCore4.dll ├── LICENSE ├── README.md ├── clear.bat ├── efd.sln ├── efd ├── CertMaker.dll ├── FiddlerCore4.dll ├── dllmain.cpp ├── efd.cpp ├── efd.def ├── efd.h ├── efd.vcxproj ├── efd.vcxproj.filters ├── makecert.exe ├── recv.h ├── send.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── makecert.exe └── 易语言例子 ├── CertMaker.dll ├── FiddlerCore4.dll ├── efd.dll ├── makecert.exe └── vcfiddlerDemo.e /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/.gitignore -------------------------------------------------------------------------------- /FiddlerCore4.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/FiddlerCore4.chm -------------------------------------------------------------------------------- /FiddlerCore4.chw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/FiddlerCore4.chw -------------------------------------------------------------------------------- /FiddlerCore4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/FiddlerCore4.dll -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/README.md -------------------------------------------------------------------------------- /clear.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/clear.bat -------------------------------------------------------------------------------- /efd.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/efd.sln -------------------------------------------------------------------------------- /efd/CertMaker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/efd/CertMaker.dll -------------------------------------------------------------------------------- /efd/FiddlerCore4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/efd/FiddlerCore4.dll -------------------------------------------------------------------------------- /efd/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/efd/dllmain.cpp -------------------------------------------------------------------------------- /efd/efd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/efd/efd.cpp -------------------------------------------------------------------------------- /efd/efd.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/efd/efd.def -------------------------------------------------------------------------------- /efd/efd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/efd/efd.h -------------------------------------------------------------------------------- /efd/efd.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/efd/efd.vcxproj -------------------------------------------------------------------------------- /efd/efd.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/efd/efd.vcxproj.filters -------------------------------------------------------------------------------- /efd/makecert.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/efd/makecert.exe -------------------------------------------------------------------------------- /efd/recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/efd/recv.h -------------------------------------------------------------------------------- /efd/send.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/efd/send.h -------------------------------------------------------------------------------- /efd/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/efd/stdafx.cpp -------------------------------------------------------------------------------- /efd/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/efd/stdafx.h -------------------------------------------------------------------------------- /efd/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/efd/targetver.h -------------------------------------------------------------------------------- /makecert.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/makecert.exe -------------------------------------------------------------------------------- /易语言例子/CertMaker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/易语言例子/CertMaker.dll -------------------------------------------------------------------------------- /易语言例子/FiddlerCore4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/易语言例子/FiddlerCore4.dll -------------------------------------------------------------------------------- /易语言例子/efd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/易语言例子/efd.dll -------------------------------------------------------------------------------- /易语言例子/makecert.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/易语言例子/makecert.exe -------------------------------------------------------------------------------- /易语言例子/vcfiddlerDemo.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cih1996/vcFiddler2/HEAD/易语言例子/vcfiddlerDemo.e --------------------------------------------------------------------------------