File tree 4 files changed +6
-2
lines changed
dev/com.ibm.ws.sipcontainer/src/com/ibm/ws/sip/channel/resolver
4 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,7 @@ public final class Dns {
82
82
public static final int NOT_IMPL = 4 ;
83
83
public static final int REFUSED = 5 ;
84
84
public static final int TRY_TCP = 6 ;
85
+ public static final int XRRSET = 7 ;
85
86
public static final int NOT_AUTH = 8 ;
86
87
public static final int NOT_ZONE = 9 ;
87
88
Original file line number Diff line number Diff line change @@ -79,6 +79,7 @@ public final class Dns {
79
79
public static final int NOT_IMPL = 4 ;
80
80
public static final int REFUSED = 5 ;
81
81
public static final int TRY_TCP = 6 ;
82
+ public static final int XRRSET = 7 ;
82
83
public static final int NOT_AUTH = 8 ;
83
84
public static final int NOT_ZONE = 9 ;
84
85
Original file line number Diff line number Diff line change @@ -474,7 +474,8 @@ public void responseReceived(WsByteBuffer byteBuffer) {
474
474
case Dns .FORM_ERROR :
475
475
case Dns .NOT_IMPL :
476
476
case Dns .REFUSED :
477
- case Dns .NOT_AUTH :
477
+ case Dns .XRRSET :
478
+ case Dns .NOT_AUTH :
478
479
case Dns .NOT_ZONE :
479
480
event = new SipResolverEvent ();
480
481
Original file line number Diff line number Diff line change @@ -517,7 +517,8 @@ public void responseReceived(ByteBuf byteBuffer) {
517
517
case Dns .FORM_ERROR :
518
518
case Dns .NOT_IMPL :
519
519
case Dns .REFUSED :
520
- case Dns .NOT_AUTH :
520
+ case Dns .XRRSET :
521
+ case Dns .NOT_AUTH :
521
522
case Dns .NOT_ZONE :
522
523
event = new SipResolverEvent ();
523
524
You can’t perform that action at this time.
0 commit comments