C语言之去掉https链接的默认443端口

举报
chenyu 发表于 2021/07/26 22:59:27 2021/07/26
【摘要】 1 问题 去掉https链接的默认443端口         2 代码实现 #include <stdio.h>#include <string.h>#include <stdlib.h> #define BOOL int#define TRUE 1#define F...

1 问题

去掉https链接的默认443端口

 

 

 

 

2 代码实现


  
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4. #define BOOL int
  5. #define TRUE 1
  6. #define FALSE 0
  7. /*
  8. *判断字符串str1是不是str2开头
  9. */
  10. int is_begin_with(const char *str1, char *str2)
  11. {
  12. if(str1 == NULL || str2 == NULL)
  13. return FALSE;
  14. int len1 = strlen(str1);
  15. int len2 = strlen(str2);
  16. if((len1 < len2) || (len1 == 0 || len2 == 0))
  17. return FALSE;
  18. char *p = str2;
  19. int i = 0;
  20. while(*p != '\0')
  21. {
  22. if(*p != str1[i])
  23. return FALSE;
  24. p++;
  25. i++;
  26. }
  27. return TRUE;
  28. }
  29. /*
  30. *判断链接是否包含端口
  31. */
  32. BOOL is_default_port(const char *url, const char *port)
  33. {
  34. if (NULL == url)
  35. {
  36. return FALSE;
  37. }
  38. if (is_begin_with(url, "https"))
  39. {
  40. //说明链接https里面包含了443端口
  41. if (strstr(url, port))
  42. {
  43. printf("url start with https and has 443 port\n");
  44. r

文章来源: chenyu.blog.csdn.net,作者:chen.yu,版权归原作者所有,如需转载,请联系作者。

原文链接:chenyu.blog.csdn.net/article/details/91905945

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。