34 DDNS
34.1 Histroy
- 2014-10-14, rayoslee, release V0.0.1
34.2 FAQ
- How to modify the length of the DDNS Password/Hostname?
In plugin_http/httpd.c
if(sRequest.m_eDataType != eANS_DATA_UNKNNOW) { ---int iParamBytes = MIN(MAX(strspn(pHeadPtr, ".abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_-+=&1234567890@[]?%"), 0), 256); +++int iParamBytes = MIN(MAX(strspn(pHeadPtr, "./abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_-+=&1234567890@[]?%"), 0), 512); ... }