1.4 关键词
Keywords specific to SIP messages which can be used mainly in if expressions. 核心关键词主要用在if语句里,如果用在xlog里打印,那么就打印的是字符串了呀 1. af The address family of the received SIP message. It is INET if the message was received over IPv4 or INET6 if the message was received over IPv6. Exampe of usage: if (af==INET6) { log("Message received over IPv6 link\n"); } 2. dst_ip The IP of the local interface where the SIP message was received. When the proxy listens on many network interfaces, makes possible to detect which was the one that received the packet. ...