Skip to content

Latest commit

 

History

History
59 lines (59 loc) · 1.7 KB

File metadata and controls

59 lines (59 loc) · 1.7 KB
.
├── builds
│   ├── android
│   │   └── jni
│   │       ├── Android.mk
│   │       └── Application.mk
│   └── build.sh
├── CMakeLists.txt
├── include
│   ├── cipher
│   │   ├── base64.h
│   │   ├── hmac_sha2.h
│   │   ├── md5.h
│   │   └── sha2.h
│   ├── cutils
│   │   ├── list.h
│   │   ├── log_helper.h
│   │   ├── memory_helper.h
│   │   ├── mlooper.h
│   │   ├── mqueue.h
│   │   ├── ringbuf.h
│   │   └── swtimer.h
│   ├── httpclient
│   │   └── httpclient.h
│   └── osal
│       ├── os_common.h
│       ├── os_log.h
│       ├── os_memory.h
│       ├── os_misc.h
│       ├── os_thread.h
│       ├── os_time.h
│       └── os_timer.h
├── LICENSE
├── osal
│   └── unix
│       ├── os_log.c
│       ├── os_memory.c
│       ├── os_misc.c
│       ├── os_thread.c
│       ├── os_time.c
│       └── os_timer.c
├── README.md
├── source
│   ├── cipher
│   │   ├── base64.c
│   │   ├── hmac_sha2.c
│   │   ├── md5.c
│   │   └── sha2.c
│   ├── cutils
│   │   ├── memdbg.c
│   │   ├── mlooper.c
│   │   ├── mqueue.c
│   │   ├── ringbuf.c
│   │   └── swtimer.c
│   └── httpclient
│       └── httpclient.c
└── test