解决非默认端口无法Send Bye的问题
This commit is contained in:
parent
39912aa9a2
commit
211874efda
@ -531,7 +531,10 @@ public class SIPCommander implements ISIPCommander {
|
|||||||
Pattern p = Pattern.compile("(\\d+\\.\\d+\\.\\d+\\.\\d+)\\:(\\d+)");
|
Pattern p = Pattern.compile("(\\d+\\.\\d+\\.\\d+\\.\\d+)\\:(\\d+)");
|
||||||
Matcher matcher = p.matcher(vh);
|
Matcher matcher = p.matcher(vh);
|
||||||
if (matcher.find()) {
|
if (matcher.find()) {
|
||||||
byeURI.setHost(matcher.group(1));
|
String ip = matcher.group(1);
|
||||||
|
byeURI.setHost(ip);
|
||||||
|
String port = matcher.group(2);
|
||||||
|
byeURI.setPort(Integer.parseInt(port));
|
||||||
}
|
}
|
||||||
ViaHeader viaHeader = (ViaHeader) byeRequest.getHeader(ViaHeader.NAME);
|
ViaHeader viaHeader = (ViaHeader) byeRequest.getHeader(ViaHeader.NAME);
|
||||||
String protocol = viaHeader.getTransport().toUpperCase();
|
String protocol = viaHeader.getTransport().toUpperCase();
|
||||||
|
Loading…
Reference in New Issue
Block a user