亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? sipheader.java

?? Java SIP
?? JAVA
字號:
/* * This file was derived from libdissipate, an open source SIP library. The original file  * was modified on 1/23/2001.  Please see * http://www.div8.net/dissipate for more information. * * Copyright (c) 2000 Billy Biggs <bbiggs@div8.net> * * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or (at your * option) any later version. *  * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public * License for more details. *  * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB.  If not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, * MA 02111-1307, USA. * *//** * class SipHeader *  * This code has been generated using C2J++ * C2J++ is based on Chris Laffra's C2J (laffra@watson.ibm.com) * Read general disclaimer distributed with C2J++ before using this code * For information about C2J++, send mail to Ilya_Tilevich@ibi.com */package org.mitre.jsip;public class SipHeader{    public static final int Accept = 0;    public static final int Accept_Encoding = 1;    public static final int Accept_Language = 2;    public static final int Allow = 3;    public static final int Also = 4;    public static final int Authorization = 5;    public static final int Call_ID = 6;    public static final int Contact = 7;    public static final int Content_Encoding = 8;    public static final int Content_Length = 9;    public static final int Content_Type = 10;    public static final int CSeq = 11;    public static final int Date = 12;    public static final int Encryption = 13;    public static final int Expires = 14;    public static final int From = 15;    public static final int Hide = 16;    public static final int Max_Forwards = 17;    public static final int Organization = 18;    public static final int Proxy_Authenticate = 19;    public static final int Proxy_Authorization = 20;    public static final int Proxy_Require = 21;    public static final int Priority = 22;    public static final int Require = 23;    public static final int Retry_After = 24;    public static final int Response_Key = 25;    public static final int Record_Route = 26;    public static final int Route = 27;    public static final int Server = 28;    public static final int Subject = 29;    public static final int Timestamp = 30;    public static final int To = 31;    public static final int Unsupported = 32;    public static final int User_Agent = 33;    public static final int Via = 34;    public static final int Warning = 35;    public static final int WWW_Authenticate = 36;    public static final int BadHeader = 37;    int id;    String data;    /**     * SipHeader     * @param newid     * @param newdata     */    public SipHeader(int newid, String newdata)    {	id = newid;	data = newdata;    }        public static String getHeaderString(int id)     {	return getHeaderString(id, false);    }    /**     * getHeaderString     * @param id     * @param shortform     * @return String     */    public static String getHeaderString(int id, boolean shortform)    {	if ( shortform ) {	    switch ( id ) {	    case Accept: return "Accept";	    case Accept_Encoding: return "Accept-Encoding";	    case Accept_Language: return "Accept-Language";	    case Allow: return "Allow";	    case Also: return "Also";	    case Authorization: return "Authorization";	    case Call_ID: return "i";	    case Contact: return "m";	    case Content_Encoding: return "e";	    case Content_Length: return "l";	    case Content_Type: return "c";	    case CSeq: return "CSeq";	    case Date: return "Date";	    case Encryption: return "Encryption";	    case Expires: return "Expires";	    case From: return "f";	    case Hide: return "Hide";	    case Max_Forwards: return "Max-Forwards";	    case Organization: return "Organization";	    case Proxy_Authenticate: return "Proxy-Authenticate";	    case Proxy_Authorization: return "Proxy-Authorization";	    case Proxy_Require: return "Proxy-Require";	    case Priority: return "Priority";	    case Require: return "Require";	    case Retry_After: return "Retry-After";	    case Response_Key: return "Response-Key";	    case Record_Route: return "Record-Route";	    case Route: return "Route";	    case Server: return "Server";	    case Subject: return "s";	    case Timestamp: return "Timestamp";	    case To: return "t";	    case Unsupported: return "Unsupported";	    case User_Agent: return "User-Agent";	    case Via: return "v";	    case Warning: return "Warning";	    case WWW_Authenticate: return "WWW-Authenticate";	    case BadHeader: return "BadHeader";	    }	} else {	    switch ( id ) {	    case Accept: return "Accept";	    case Accept_Encoding: return "Accept-Encoding";	    case Accept_Language: return "Accept-Language";	    case Allow: return "Allow";	    case Also: return "Also";	    case Authorization: return "Authorization";	    case Call_ID: return "Call-ID";	    case Contact: return "Contact";	    case Content_Encoding: return "Content-Encoding";	    case Content_Length: return "Content-Length";	    case Content_Type: return "Content-Type";	    case CSeq: return "CSeq";	    case Date: return "Date";	    case Encryption: return "Encryption";	    case Expires: return "Expires";	    case From: return "From";	    case Hide: return "Hide";	    case Max_Forwards: return "Max-Forwards";	    case Organization: return "Organization";	    case Proxy_Authenticate: return "Proxy-Authenticate";	    case Proxy_Authorization: return "Proxy-Authorization";	    case Proxy_Require: return "Proxy-Require";	    case Priority: return "Priority";	    case Require: return "Require";	    case Retry_After: return "Retry-After";	    case Response_Key: return "Response-Key";	    case Record_Route: return "Record-Route";	    case Route: return "Route";	    case Server: return "Server";	    case Subject: return "Subject";	    case Timestamp: return "Timestamp";	    case To: return "To";	    case Unsupported: return "Unsupported";	    case User_Agent: return "User-Agent";	    case Via: return "Via";	    case Warning: return "Warning";	    case WWW_Authenticate: return "WWW-Authenticate";	    case BadHeader: return "BadHeader";	    }	}	return null;    }        /**     * matchHeader     * @param h     * @return SipHeaderId     */    public static int matchHeader(String h)    {	String u = h.toUpperCase();		// Check short forms first	if ( u.compareTo( getHeaderString( Via, true ).toUpperCase() ) == 0 ) { return Via; }	if ( u.compareTo( getHeaderString( Content_Type, true ).toUpperCase() ) == 0 ) { return Content_Type; }	if ( u.compareTo( getHeaderString( Content_Encoding, true ).toUpperCase() ) == 0 ) { return Content_Encoding; }	if ( u.compareTo( getHeaderString( From, true ).toUpperCase() ) == 0 ) { return From; }	if ( u.compareTo( getHeaderString( Call_ID, true ).toUpperCase() ) == 0 ) { return Call_ID; }	if ( u.compareTo( getHeaderString( Contact, true ).toUpperCase() ) == 0 ) { return Contact; }	if ( u.compareTo( getHeaderString( Content_Length, true ).toUpperCase() ) == 0 ) { return Content_Length; }	if ( u.compareTo( getHeaderString( Subject, true ).toUpperCase() ) == 0 ) { return Subject; }	if ( u.compareTo( getHeaderString( To, true ).toUpperCase() ) == 0 ) { return To; }	if ( u.compareTo( getHeaderString( Accept ).toUpperCase() ) == 0 ) { return Accept; }	if ( u.compareTo( getHeaderString( Accept_Encoding ).toUpperCase() ) == 0 ) { return Accept_Encoding; }	if ( u.compareTo( getHeaderString( Accept_Language ).toUpperCase() ) == 0 ) { return Accept_Language; }	if ( u.compareTo( getHeaderString( Allow ).toUpperCase() ) == 0 ) { return Allow; }	if ( u.compareTo( getHeaderString( Also ).toUpperCase() ) == 0 ) { return Also; }	if ( u.compareTo( getHeaderString( Authorization ).toUpperCase() ) == 0 ) { return Authorization; }	if ( u.compareTo( getHeaderString( Call_ID ).toUpperCase() ) == 0 ) { return Call_ID; }	if ( u.compareTo( getHeaderString( Contact ).toUpperCase() ) == 0 ) { return Contact; }	if ( u.compareTo( getHeaderString( Content_Encoding ).toUpperCase() ) == 0 ) { return Content_Encoding; }	if ( u.compareTo( getHeaderString( Content_Length ).toUpperCase() ) == 0 ) { return Content_Length; }	if ( u.compareTo( getHeaderString( Content_Type, true  ).toUpperCase() ) == 0 ) { return Content_Type; }	if ( u.compareTo( getHeaderString( CSeq ).toUpperCase() ) == 0 ) { return CSeq; }	if ( u.compareTo( getHeaderString( Date ).toUpperCase() ) == 0 ) { return Date; }	if ( u.compareTo( getHeaderString( Encryption ).toUpperCase() ) == 0 ) { return Encryption; }	if ( u.compareTo( getHeaderString( Expires ).toUpperCase() ) == 0 ) { return Expires; }	if ( u.compareTo( getHeaderString( From ).toUpperCase() ) == 0 ) { return From; }	if ( u.compareTo( getHeaderString( Hide ).toUpperCase() ) == 0 ) { return Hide; }	if ( u.compareTo( getHeaderString( Max_Forwards ).toUpperCase() ) == 0 ) { return Max_Forwards; }	if ( u.compareTo( getHeaderString( Organization ).toUpperCase() ) == 0 ) { return Organization; }	if ( u.compareTo( getHeaderString( Proxy_Authenticate ).toUpperCase() ) == 0 ) { return Proxy_Authenticate; }	if ( u.compareTo( getHeaderString( Proxy_Authorization ).toUpperCase() ) == 0 ) { return Proxy_Authorization; }	if ( u.compareTo( getHeaderString( Proxy_Require ).toUpperCase() ) == 0 ) { return Proxy_Require; }	if ( u.compareTo( getHeaderString( Priority ).toUpperCase() ) == 0 ) { return Priority; }	if ( u.compareTo( getHeaderString( Require ).toUpperCase() ) == 0 ) { return Require; }	if ( u.compareTo( getHeaderString( Retry_After ).toUpperCase() ) == 0 ) { return Retry_After; }	if ( u.compareTo( getHeaderString( Response_Key ).toUpperCase() ) == 0 ) { return Response_Key; }	if ( u.compareTo( getHeaderString( Record_Route ).toUpperCase() ) == 0 ) { return Record_Route; }	if ( u.compareTo( getHeaderString( Route ).toUpperCase() ) == 0 ) { return Route; }	if ( u.compareTo( getHeaderString( Server ).toUpperCase() ) == 0 ) { return Server; }	if ( u.compareTo( getHeaderString( Subject ).toUpperCase() ) == 0 ) { return Subject; }	if ( u.compareTo( getHeaderString( Timestamp ).toUpperCase() ) == 0 ) { return Timestamp; }	if ( u.compareTo( getHeaderString( To ).toUpperCase() ) == 0 ) { return To; }	if ( u.compareTo( getHeaderString( Unsupported ).toUpperCase() ) == 0 ) { return Unsupported; }	if ( u.compareTo( getHeaderString( User_Agent ).toUpperCase() ) == 0 ) { return User_Agent; }	if ( u.compareTo( getHeaderString( Via ).toUpperCase() ) == 0 ) { return Via; }	if ( u.compareTo( getHeaderString( Warning ).toUpperCase() ) == 0 ) { return Warning; }	if ( u.compareTo( getHeaderString( WWW_Authenticate ).toUpperCase() ) == 0 ) { return WWW_Authenticate; }	return BadHeader;    }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产日产亚洲精品系列| 亚洲一区二区三区四区中文字幕| 精品国产一区二区三区久久影院 | 亚洲精品成人少妇| 亚洲愉拍自拍另类高清精品| 一区二区三区四区国产精品| 亚洲成人第一页| 蜜臀久久99精品久久久久宅男| 狠狠色丁香久久婷婷综合_中| 国产精品一二三四区| www.爱久久.com| 在线不卡一区二区| 国产无人区一区二区三区| 国产精品理论片| 美日韩一区二区三区| 国产久卡久卡久卡久卡视频精品| 成人免费视频视频在线观看免费| 97久久超碰国产精品| 91精品国产综合久久香蕉麻豆| 精品久久人人做人人爽| 亚洲欧美另类久久久精品2019| 天天综合天天做天天综合| 成人免费的视频| 4438成人网| 亚洲综合免费观看高清在线观看| 国产乱码精品一品二品| 欧美一区中文字幕| 亚洲成人先锋电影| 激情综合五月天| 欧美一级国产精品| 亚洲一区二区三区中文字幕| 丁香六月久久综合狠狠色| 欧美精品欧美精品系列| 中文字幕在线一区二区三区| 另类小说欧美激情| 欧美美女激情18p| 亚洲一区二区三区三| av影院午夜一区| 国产精品国产三级国产普通话三级 | 日韩免费看的电影| 国产视频一区二区三区在线观看| 中文字幕在线不卡一区| 国产主播一区二区| 日韩一区二区三区在线视频| 一卡二卡三卡日韩欧美| av在线不卡电影| 国产精品久久久久久久久晋中| 久久精品国产77777蜜臀| 欧美一区二区三区色| 蜜臀久久久久久久| 久久伊人蜜桃av一区二区| 日韩精品久久理论片| 日韩一区二区三| 久久国产日韩欧美精品| 精品国产一区二区精华| 国产一区二区毛片| 国产精品久久久久影院| 国产精品99久久久| 最近日韩中文字幕| 在线亚洲高清视频| 免费欧美高清视频| 久久久久久久久岛国免费| caoporm超碰国产精品| 一区二区三区资源| 日韩精品专区在线影院重磅| 国产中文字幕一区| 中文字幕亚洲电影| 91精品国产乱| 99久久99久久精品免费看蜜桃 | 国产一区高清在线| 最近中文字幕一区二区三区| 欧美人动与zoxxxx乱| 激情综合色综合久久综合| 亚洲丝袜制服诱惑| 精品国产伦一区二区三区观看方式 | 精品一区二区三区在线播放视频| 中文字幕乱码久久午夜不卡 | 国产欧美一区二区三区在线看蜜臀 | 国产精品美女久久久久久久久久久 | 久久人人97超碰com| 91久久线看在观草草青青| 久久99精品国产| 亚洲bt欧美bt精品| 中文字幕精品—区二区四季| 欧美午夜精品一区二区蜜桃| 风间由美中文字幕在线看视频国产欧美| 一级中文字幕一区二区| 国产欧美一区二区三区沐欲| 欧美日韩久久久| 99re视频精品| 成人黄动漫网站免费app| 美国一区二区三区在线播放| 亚洲第一精品在线| 一区二区在线观看不卡| 亚洲国产精品成人综合| 久久先锋影音av| 精品国产乱码久久久久久夜甘婷婷 | 亚洲一区二区视频| 亚洲综合视频在线观看| 亚洲黄色免费网站| 亚洲一区在线观看免费观看电影高清| 国产精品美女久久久久aⅴ国产馆| wwwwxxxxx欧美| 日韩欧美国产精品| 久久夜色精品国产欧美乱极品| 91精品久久久久久久久99蜜臂| 欧美人牲a欧美精品| 日韩三级av在线播放| 26uuu久久综合| 国产精品毛片高清在线完整版| 国产精品久久久久久久久动漫 | 日韩成人免费电影| 久久国产精品72免费观看| 国产精品一区二区在线播放| 成人少妇影院yyyy| 欧美午夜一区二区三区免费大片| 欧美日韩一区二区电影| 精品国产电影一区二区| 国产精品三级视频| 午夜在线成人av| 国产精品综合av一区二区国产馆| 成人动漫在线一区| 日韩视频免费观看高清完整版| 2020国产成人综合网| 有码一区二区三区| 美脚の诱脚舐め脚责91 | 精品在线视频一区| 91九色02白丝porn| 136国产福利精品导航| 日韩欧美国产综合一区| 久久九九久久九九| 亚洲一区二区在线播放相泽| 蜜桃在线一区二区三区| 91精品1区2区| 久久精品欧美一区二区三区不卡 | 亚洲成人在线免费| 99综合电影在线视频| 日韩欧美在线123| 亚洲综合小说图片| 99热国产精品| 亚洲精品在线观| 日韩高清欧美激情| 91成人在线精品| 国产精品久久影院| 国产毛片精品视频| 精品理论电影在线| 麻豆专区一区二区三区四区五区| 欧美一区二区在线免费观看| 亚洲婷婷国产精品电影人久久| 国产成人亚洲综合a∨婷婷图片| 色av成人天堂桃色av| 久久网这里都是精品| 一区二区三区资源| 国产福利一区二区三区视频在线| 色天使久久综合网天天| 亚洲视频网在线直播| 波多野结衣视频一区| 亚洲国产岛国毛片在线| 久久av中文字幕片| 精品国偷自产国产一区| 日韩精品高清不卡| 91精品国产欧美一区二区成人| 一区二区三区**美女毛片| 在线一区二区三区四区| 一二三四社区欧美黄| 51午夜精品国产| 久久99精品视频| 国产精品乱码久久久久久| 一本色道综合亚洲| 日韩和欧美的一区| 亚洲欧美怡红院| 色婷婷亚洲精品| 视频在线观看国产精品| 精品福利一区二区三区免费视频| 国产精品一二三| 亚洲色图欧美激情| 日韩免费观看2025年上映的电影| 国产又粗又猛又爽又黄91精品| 国产精品久久久久久久浪潮网站 | 国产成人免费高清| 洋洋av久久久久久久一区| 51久久夜色精品国产麻豆| 成人综合激情网| 五月婷婷综合在线| 亚洲特黄一级片| 日韩天堂在线观看| 91麻豆精品秘密| 国内精品伊人久久久久影院对白| 亚洲欧洲日韩av| 精品久久一区二区| 欧美日本高清视频在线观看| 91视频xxxx| 香蕉成人伊视频在线观看| 精品三级在线观看| 欧美性一二三区| 色婷婷亚洲精品| 91在线观看污| 99久久精品国产导航| 国产精品影视网| 久久超碰97人人做人人爱|