首页 > 开发 > PHP > 正文

php版微信支付api.mch.weixin.qq.com域名解析慢原因与解决方法

2024-05-04 22:52:03
字体:
来源:转载
供稿:网友

本文实例讲述了php版微信支付api.mch.weixin.qq.com域名解析慢原因与解决方法。分享给大家供大家参考,具体如下:

微信支付api.mch.weixin.qq.com域名解析慢了,导致付款时非常的慢,那么要如何来解决微信支付慢的问题呢,这里就来一起分析一下。

有朋友在阿里云主机实现微信支付逻辑时,发现api.mch.weixin.qq.com的解析实在是太慢了。

因此出现了手动修改/etc/hosts的情况,当然了,哪天微信支付要是换个机房肯定要挂。

我们的机房也有相似的同题,专门记录一下。

代码里用curl来请求微信,经常超时,这时使用wget试验:

[root@01 tmp]# wget api.mch.weixin.qq.com--2016-06-18 14:51:03-- http://api.mch.weixin.qq.com/Resolving api.mch.weixin.qq.com...

域名解析很久不出来

测试确认是ipv6问题

给wget加上-4,强制使用ipv4,如果很快,那基本上确定是ipv6惹的祸了。

[root@01 tmp]# wget -4 api.mch.weixin.qq.com--2016-06-18 17:03:52-- http://api.mch.weixin.qq.com/Resolving api.mch.weixin.qq.com... 123.151.71.149, 123.151.79.109Connecting to api.mch.weixin.qq.com|123.151.71.149|:80... connected.

代码分析

专门写个代码来测试ipv6的解析,用到系统函数getaddrinfo:

#include <stdio.h>#include <string.h>#include <netdb.h>#include <iostream>#include <sys/types.h>#include <sys/types.h>#include <sys/socket.h>#include <arpa/inet.h>using namespace std;int main() {  struct addrinfo hints,*answer,*curr,*p;  int error;  memset(&hints, 0, sizeof hints);  hints.ai_family = AF_INET6;//AF_UNSPEC; // use AF_INET6 to force IPv6  hints.ai_socktype = SOCK_STREAM;//SOCK_DGRAM; // SOCK_STREAM  if ((error = getaddrinfo("api.mch.weixin.qq.com", NULL, &hints, &answer)) != 0) {    fprintf(stderr, "getaddrinfo: %s/n", gai_strerror(error));    return 1;  } else cout <<"Success with a URL/n";  char ipstr[16];  for (curr = answer; curr != NULL; curr = curr->ai_next) {    inet_ntop(AF_INET,&(((struct sockaddr_in *)(curr->ai_addr))->sin_addr),ipstr, 16);    printf("%s/n", ipstr);  }  freeaddrinfo(answer);  return 0;}

包含头文件

netdb.h

函数原型:

int getaddrinfo( const char hostname, const char service, const struct addrinfo *hints, struct addrinfo **result );

参数说明:

hints:可以是一个空指针,也可以是一个指向某个addrinfo结构体的指针,调用者在这个结构中填入关于期望返回的信息类型的暗示。举例来说:如果指定的服务既支持TCP也支持UDP,那么调用者可以把hints结构中的ai_socktype成员设置成SOCK_DGRAM使得返回的仅仅是适用于数据报套接口的信息。而是否ipv6则由ai_family决定。
result:本函数通过result指针参数返回一个指向addrinfo结构体链表的指针。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表