routingrule.java

来自「结构非常清晰的SIP协议栈」· Java 代码 · 共 20 行

JAVA
20
字号
package local.server;


import org.zoolu.sip.address.SipURL;


/** RoutingRule.
  */
public interface RoutingRule
{
   /** Gets the proper next-hop SipURL for the selected URL.
     * It return the SipURL used to reach the selected URL.
     * @param sip_url the selected destination URL
     * @return returns the proper next-hop SipURL for the selected URL
     * if the routing rule matches the URL, otherwise it returns null. */
   public SipURL getNexthop(SipURL sip_url);  

   /** Gets the String value. */
   public String toString();  
}  

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?