HTTP业务层增加subscribe ID扫描功能。

This commit is contained in:
zhengchao
2018-12-16 22:47:03 +06:00
parent 8713da2d81
commit 3d710accd3
6 changed files with 204 additions and 32 deletions

View File

@@ -157,6 +157,7 @@ struct tfe_stream_addr * tfe_stream_addr_create_by_fd(int fd, enum tfe_conn_dir
//Follow function's returned pointer should be passed to free to release the allocated storage when it is no longer needed.
char* tfe_string_addr_create_by_fd(int fd, enum tfe_conn_dir dir);
char * tfe_stream_addr_to_str(const struct tfe_stream_addr * addr);
int tfe_stream_addr_str_split(char* addr_str, const char** sip, const char** sport, const char** dip, const char** dport);