├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── README_EN.md ├── ab_cip_test ├── ab_plc_cip_net ├── ab_cip.c ├── ab_cip.h ├── ab_cip_helper.c ├── ab_cip_helper.h ├── ab_cip_private.h ├── ab_plc_cip_net.sln ├── ab_plc_cip_net.vcxproj ├── main.c ├── makefile ├── socket.c ├── socket.h ├── typedef.h ├── utill.c └── utill.h ├── common.mk ├── config.mk └── makefile /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/ab_plc_cip_net/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/ab_plc_cip_net/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/ab_plc_cip_net/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/ab_plc_cip_net/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/ab_plc_cip_net/HEAD/README_EN.md -------------------------------------------------------------------------------- /ab_cip_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/ab_plc_cip_net/HEAD/ab_cip_test -------------------------------------------------------------------------------- /ab_plc_cip_net/ab_cip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/ab_plc_cip_net/HEAD/ab_plc_cip_net/ab_cip.c -------------------------------------------------------------------------------- /ab_plc_cip_net/ab_cip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/ab_plc_cip_net/HEAD/ab_plc_cip_net/ab_cip.h -------------------------------------------------------------------------------- /ab_plc_cip_net/ab_cip_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/ab_plc_cip_net/HEAD/ab_plc_cip_net/ab_cip_helper.c -------------------------------------------------------------------------------- /ab_plc_cip_net/ab_cip_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/ab_plc_cip_net/HEAD/ab_plc_cip_net/ab_cip_helper.h -------------------------------------------------------------------------------- /ab_plc_cip_net/ab_cip_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/ab_plc_cip_net/HEAD/ab_plc_cip_net/ab_cip_private.h -------------------------------------------------------------------------------- /ab_plc_cip_net/ab_plc_cip_net.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/ab_plc_cip_net/HEAD/ab_plc_cip_net/ab_plc_cip_net.sln -------------------------------------------------------------------------------- /ab_plc_cip_net/ab_plc_cip_net.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/ab_plc_cip_net/HEAD/ab_plc_cip_net/ab_plc_cip_net.vcxproj -------------------------------------------------------------------------------- /ab_plc_cip_net/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/ab_plc_cip_net/HEAD/ab_plc_cip_net/main.c -------------------------------------------------------------------------------- /ab_plc_cip_net/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/ab_plc_cip_net/HEAD/ab_plc_cip_net/makefile -------------------------------------------------------------------------------- /ab_plc_cip_net/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/ab_plc_cip_net/HEAD/ab_plc_cip_net/socket.c -------------------------------------------------------------------------------- /ab_plc_cip_net/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/ab_plc_cip_net/HEAD/ab_plc_cip_net/socket.h -------------------------------------------------------------------------------- /ab_plc_cip_net/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/ab_plc_cip_net/HEAD/ab_plc_cip_net/typedef.h -------------------------------------------------------------------------------- /ab_plc_cip_net/utill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/ab_plc_cip_net/HEAD/ab_plc_cip_net/utill.c -------------------------------------------------------------------------------- /ab_plc_cip_net/utill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/ab_plc_cip_net/HEAD/ab_plc_cip_net/utill.h -------------------------------------------------------------------------------- /common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/ab_plc_cip_net/HEAD/common.mk -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/ab_plc_cip_net/HEAD/config.mk -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-pms/ab_plc_cip_net/HEAD/makefile --------------------------------------------------------------------------------