├── README.md ├── config ├── src ├── ngx_stream_http_parser.c ├── ngx_stream_http_parser.h ├── ngx_stream_json.c ├── ngx_stream_json.h ├── ngx_stream_upsync_module.c └── ngx_stream_upsync_module.h └── test ├── README ├── conf-server.sh ├── t ├── lib │ ├── Test │ │ ├── Nginx.pm │ │ └── Nginx │ │ │ ├── IMAP.pm │ │ │ ├── POP3.pm │ │ │ └── SMTP.pm │ └── Time │ │ ├── Parse.pm │ │ └── Zone.pm └── upsync.t └── test.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokai-wang/nginx-stream-upsync-module/HEAD/README.md -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokai-wang/nginx-stream-upsync-module/HEAD/config -------------------------------------------------------------------------------- /src/ngx_stream_http_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokai-wang/nginx-stream-upsync-module/HEAD/src/ngx_stream_http_parser.c -------------------------------------------------------------------------------- /src/ngx_stream_http_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokai-wang/nginx-stream-upsync-module/HEAD/src/ngx_stream_http_parser.h -------------------------------------------------------------------------------- /src/ngx_stream_json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokai-wang/nginx-stream-upsync-module/HEAD/src/ngx_stream_json.c -------------------------------------------------------------------------------- /src/ngx_stream_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokai-wang/nginx-stream-upsync-module/HEAD/src/ngx_stream_json.h -------------------------------------------------------------------------------- /src/ngx_stream_upsync_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokai-wang/nginx-stream-upsync-module/HEAD/src/ngx_stream_upsync_module.c -------------------------------------------------------------------------------- /src/ngx_stream_upsync_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokai-wang/nginx-stream-upsync-module/HEAD/src/ngx_stream_upsync_module.h -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokai-wang/nginx-stream-upsync-module/HEAD/test/README -------------------------------------------------------------------------------- /test/conf-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokai-wang/nginx-stream-upsync-module/HEAD/test/conf-server.sh -------------------------------------------------------------------------------- /test/t/lib/Test/Nginx.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokai-wang/nginx-stream-upsync-module/HEAD/test/t/lib/Test/Nginx.pm -------------------------------------------------------------------------------- /test/t/lib/Test/Nginx/IMAP.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokai-wang/nginx-stream-upsync-module/HEAD/test/t/lib/Test/Nginx/IMAP.pm -------------------------------------------------------------------------------- /test/t/lib/Test/Nginx/POP3.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokai-wang/nginx-stream-upsync-module/HEAD/test/t/lib/Test/Nginx/POP3.pm -------------------------------------------------------------------------------- /test/t/lib/Test/Nginx/SMTP.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokai-wang/nginx-stream-upsync-module/HEAD/test/t/lib/Test/Nginx/SMTP.pm -------------------------------------------------------------------------------- /test/t/lib/Time/Parse.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokai-wang/nginx-stream-upsync-module/HEAD/test/t/lib/Time/Parse.pm -------------------------------------------------------------------------------- /test/t/lib/Time/Zone.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokai-wang/nginx-stream-upsync-module/HEAD/test/t/lib/Time/Zone.pm -------------------------------------------------------------------------------- /test/t/upsync.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokai-wang/nginx-stream-upsync-module/HEAD/test/t/upsync.t -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokai-wang/nginx-stream-upsync-module/HEAD/test/test.sh --------------------------------------------------------------------------------