📄 ipaddrparse.h
字号:
#ifndef VSF_IPADDRPARSE_H#define VSF_IPADDRPARSE_Hstruct mystr;/* Effectively doing the same sort of job as inet_pton. Since inet_pton does * a non-trivial amount of parsing, we'll do it ourselves for maximum security * and safety. */const unsigned char* vsf_sysutil_parse_ipv6(const struct mystr* p_str);const unsigned char* vsf_sysutil_parse_ipv4(const struct mystr* p_str);const unsigned char* vsf_sysutil_parse_uchar_string_sep( const struct mystr* p_str, char sep, unsigned char* p_items, unsigned int items);#endif /* VSF_IPADDRPARSE_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -