diff --git a/dialog/dialog.go b/dialog/dialog.go index 7e397d6..574209c 100755 --- a/dialog/dialog.go +++ b/dialog/dialog.go @@ -24,10 +24,10 @@ import ( "net" "time" - "github.com/jart/gosip/rtp" - "github.com/jart/gosip/sdp" - "github.com/jart/gosip/sip" - "github.com/jart/gosip/util" + "github.com/cresta/gosip/rtp" + "github.com/cresta/gosip/sdp" + "github.com/cresta/gosip/sip" + "github.com/cresta/gosip/util" ) const ( diff --git a/dialog/messages.go b/dialog/messages.go index e625277..ae89668 100644 --- a/dialog/messages.go +++ b/dialog/messages.go @@ -17,8 +17,8 @@ package dialog import ( "log" - "github.com/jart/gosip/sip" - "github.com/jart/gosip/util" + "github.com/cresta/gosip/sip" + "github.com/cresta/gosip/util" ) const ( diff --git a/dialog/receiver.go b/dialog/receiver.go index 19f575c..27152f0 100644 --- a/dialog/receiver.go +++ b/dialog/receiver.go @@ -20,7 +20,7 @@ import ( "strconv" "time" - "github.com/jart/gosip/sip" + "github.com/cresta/gosip/sip" ) func ReceiveMessages(sock *net.UDPConn, c chan<- *sip.Msg, e chan<- error) { diff --git a/dialog/route.go b/dialog/route.go index 3cdd88d..1f92214 100644 --- a/dialog/route.go +++ b/dialog/route.go @@ -20,8 +20,8 @@ import ( "net" "strconv" - "github.com/jart/gosip/sip" - "github.com/jart/gosip/util" + "github.com/cresta/gosip/sip" + "github.com/cresta/gosip/util" ) type AddressRoute struct { diff --git a/dialog/transport.go b/dialog/transport.go index 5cf7e99..dc56e19 100755 --- a/dialog/transport.go +++ b/dialog/transport.go @@ -22,8 +22,8 @@ import ( "net" "time" - "github.com/jart/gosip/sip" - "github.com/jart/gosip/util" + "github.com/cresta/gosip/sip" + "github.com/cresta/gosip/util" ) // Transport sends and receives SIP messages over UDP with stateless routing. diff --git a/dsp/awgn_test.go b/dsp/awgn_test.go index fc96982..7e9cc0e 100644 --- a/dsp/awgn_test.go +++ b/dsp/awgn_test.go @@ -17,7 +17,7 @@ package dsp_test import ( "testing" - "github.com/jart/gosip/dsp" + "github.com/cresta/gosip/dsp" ) func TestAWGN(t *testing.T) { diff --git a/dsp/dsp_test.go b/dsp/dsp_test.go index b0f5ae2..28f3972 100755 --- a/dsp/dsp_test.go +++ b/dsp/dsp_test.go @@ -17,7 +17,7 @@ package dsp_test import ( "testing" - "github.com/jart/gosip/dsp" + "github.com/cresta/gosip/dsp" ) func TestL16MixSat160(t *testing.T) { diff --git a/example/echo/echo_test.go b/example/echo/echo_test.go index a4cbd49..6720ea6 100755 --- a/example/echo/echo_test.go +++ b/example/echo/echo_test.go @@ -153,10 +153,10 @@ import ( "testing" "time" - "github.com/jart/gosip/rtp" - "github.com/jart/gosip/sdp" - "github.com/jart/gosip/sip" - "github.com/jart/gosip/util" + "github.com/cresta/gosip/rtp" + "github.com/cresta/gosip/sdp" + "github.com/cresta/gosip/sip" + "github.com/cresta/gosip/util" ) func TestCallToEchoApp(t *testing.T) { diff --git a/example/echo2/echo2_test.go b/example/echo2/echo2_test.go index 3d1579a..e0abf3c 100755 --- a/example/echo2/echo2_test.go +++ b/example/echo2/echo2_test.go @@ -22,11 +22,11 @@ import ( "testing" "time" - "github.com/jart/gosip/dialog" - "github.com/jart/gosip/dsp" - "github.com/jart/gosip/rtp" - "github.com/jart/gosip/sdp" - "github.com/jart/gosip/sip" + "github.com/cresta/gosip/dialog" + "github.com/cresta/gosip/dsp" + "github.com/cresta/gosip/rtp" + "github.com/cresta/gosip/sdp" + "github.com/cresta/gosip/sip" ) func TestCallToEchoApp(t *testing.T) { diff --git a/example/echo3/echo3_test.go b/example/echo3/echo3_test.go index 0fb5bb2..a42e698 100755 --- a/example/echo3/echo3_test.go +++ b/example/echo3/echo3_test.go @@ -21,12 +21,12 @@ import ( "testing" "time" - "github.com/jart/gosip/dialog" - "github.com/jart/gosip/dsp" - "github.com/jart/gosip/rtp" - "github.com/jart/gosip/sdp" - "github.com/jart/gosip/sip" - "github.com/jart/gosip/util" + "github.com/cresta/gosip/dialog" + "github.com/cresta/gosip/dsp" + "github.com/cresta/gosip/rtp" + "github.com/cresta/gosip/sdp" + "github.com/cresta/gosip/sip" + "github.com/cresta/gosip/util" ) func TestCallToEchoApp(t *testing.T) { diff --git a/example/options/options_test.go b/example/options/options_test.go index 8dccd31..8532274 100755 --- a/example/options/options_test.go +++ b/example/options/options_test.go @@ -22,8 +22,8 @@ import ( "testing" "time" - "github.com/jart/gosip/sip" - "github.com/jart/gosip/util" + "github.com/cresta/gosip/sip" + "github.com/cresta/gosip/util" ) func TestOptions(t *testing.T) { diff --git a/example/rawsip/rawsip_test.go b/example/rawsip/rawsip_test.go index 806db9b..6230877 100755 --- a/example/rawsip/rawsip_test.go +++ b/example/rawsip/rawsip_test.go @@ -24,7 +24,7 @@ import ( "testing" "time" - "github.com/jart/gosip/util" + "github.com/cresta/gosip/util" ) // An 'OPTIONS' message is used to: diff --git a/fone/main.go b/fone/main.go index 4def14e..eba0e97 100644 --- a/fone/main.go +++ b/fone/main.go @@ -34,12 +34,12 @@ import ( "time" "unsafe" - "github.com/jart/gosip/dialog" - "github.com/jart/gosip/dsp" - "github.com/jart/gosip/rtp" - "github.com/jart/gosip/sdp" - "github.com/jart/gosip/sip" - "github.com/jart/gosip/util" + "github.com/cresta/gosip/dialog" + "github.com/cresta/gosip/dsp" + "github.com/cresta/gosip/rtp" + "github.com/cresta/gosip/sdp" + "github.com/cresta/gosip/sip" + "github.com/cresta/gosip/util" ) const ( diff --git a/go.mod b/go.mod index ceb4bb0..41ad3d6 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/jart/gosip +module github.com/cresta/gosip -go 1.14 +go 1.20 diff --git a/go.sum b/go.sum index e69de29..958bc87 100644 --- a/go.sum +++ b/go.sum @@ -0,0 +1,2 @@ +github.com/jart/gosip v0.0.0-20220818224804-29801cedf805 h1:mAaAQei2Kf679W1Zc65tkAEC8z4C6OZYWzJxVEB8mc8= +github.com/jart/gosip v0.0.0-20220818224804-29801cedf805/go.mod h1:pLqHw0l24s7B/i+bBauWzg3oF8z+78wfh/8MnRce81Q= diff --git a/rtp/session.go b/rtp/session.go index bd4cb1a..1024b10 100644 --- a/rtp/session.go +++ b/rtp/session.go @@ -24,8 +24,8 @@ import ( "strconv" "strings" - "github.com/jart/gosip/dsp" - "github.com/jart/gosip/sdp" + "github.com/cresta/gosip/dsp" + "github.com/cresta/gosip/sdp" ) const ( diff --git a/sdp/origin.go b/sdp/origin.go index c0a0b6c..9e73be7 100644 --- a/sdp/origin.go +++ b/sdp/origin.go @@ -17,7 +17,7 @@ package sdp import ( "bytes" - "github.com/jart/gosip/util" + "github.com/cresta/gosip/util" ) // Origin represents the session origin (o=) line of an SDP. Who knows what diff --git a/sdp/sdp.go b/sdp/sdp.go index e151629..fcfb135 100755 --- a/sdp/sdp.go +++ b/sdp/sdp.go @@ -74,7 +74,7 @@ import ( "strconv" "strings" - "github.com/jart/gosip/util" + "github.com/cresta/gosip/util" ) const ( diff --git a/sdp/sdp_test.go b/sdp/sdp_test.go index 119a625..7f989ab 100755 --- a/sdp/sdp_test.go +++ b/sdp/sdp_test.go @@ -18,7 +18,7 @@ import ( "fmt" "testing" - "github.com/jart/gosip/sdp" + "github.com/cresta/gosip/sdp" ) type sdpTest struct { diff --git a/sip/addr.go b/sip/addr.go index acb56c7..134e386 100755 --- a/sip/addr.go +++ b/sip/addr.go @@ -35,7 +35,7 @@ package sip import ( "bytes" - "github.com/jart/gosip/util" + "github.com/cresta/gosip/util" ) // Represents a SIP Address Linked List diff --git a/sip/addr_test.go b/sip/addr_test.go index 26dd269..e1ebf98 100755 --- a/sip/addr_test.go +++ b/sip/addr_test.go @@ -19,7 +19,7 @@ import ( "reflect" "testing" - "github.com/jart/gosip/sip" + "github.com/cresta/gosip/sip" ) type addrTest struct { diff --git a/sip/msg_parse.go b/sip/msg_parse.go index 0fa4384..e722b71 100644 --- a/sip/msg_parse.go +++ b/sip/msg_parse.go @@ -1,30 +1,26 @@ // Copyright 2020 Justine Alexandra Roberts Tunney -// +// // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at -// +// // http://www.apache.org/licenses/LICENSE-2.0 -// +// // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. - //line msg_parse.rl:1 // -*-go-*- package sip import ( - "errors" "fmt" - "github.com/jart/gosip/sdp" ) - //line msg_parse.rl:12 //line msg_parse.rl:13 @@ -46,10 +42,9 @@ const msg_en_xheader int = 273 const msg_en_header int = 280 const msg_en_main int = 1 - -//line msg_parse.rl:14 - // ParseMsg turns a SIP message byte slice into a data structure. +// +//line msg_parse.rl:14 func ParseMsg(data []byte) (msg *Msg, err error) { if data == nil { return nil, nil @@ -72,1591 +67,1590 @@ func ParseMsg(data []byte) (msg *Msg, err error) { var addrp **Addr var addr *Addr - //line msg_parse.rl:39 - + //line msg_parse.go:65 { - cs = msg_start + cs = msg_start } //line msg_parse.rl:40 - + //line msg_parse.go:72 { - var _widec int16 - if p == pe { - goto _test_eof - } - switch cs { - case 1: - goto st_case_1 - case 0: - goto st_case_0 - case 2: - goto st_case_2 - case 3: - goto st_case_3 - case 4: - goto st_case_4 - case 5: - goto st_case_5 - case 6: - goto st_case_6 - case 7: - goto st_case_7 - case 8: - goto st_case_8 - case 9: - goto st_case_9 - case 10: - goto st_case_10 - case 11: - goto st_case_11 - case 12: - goto st_case_12 - case 13: - goto st_case_13 - case 765: - goto st_case_765 - case 14: - goto st_case_14 - case 15: - goto st_case_15 - case 16: - goto st_case_16 - case 17: - goto st_case_17 - case 18: - goto st_case_18 - case 19: - goto st_case_19 - case 20: - goto st_case_20 - case 21: - goto st_case_21 - case 22: - goto st_case_22 - case 23: - goto st_case_23 - case 24: - goto st_case_24 - case 25: - goto st_case_25 - case 26: - goto st_case_26 - case 27: - goto st_case_27 - case 28: - goto st_case_28 - case 29: - goto st_case_29 - case 30: - goto st_case_30 - case 31: - goto st_case_31 - case 32: - goto st_case_32 - case 33: - goto st_case_33 - case 34: - goto st_case_34 - case 35: - goto st_case_35 - case 36: - goto st_case_36 - case 37: - goto st_case_37 - case 38: - goto st_case_38 - case 39: - goto st_case_39 - case 40: - goto st_case_40 - case 41: - goto st_case_41 - case 42: - goto st_case_42 - case 43: - goto st_case_43 - case 44: - goto st_case_44 - case 766: - goto st_case_766 - case 45: - goto st_case_45 - case 46: - goto st_case_46 - case 47: - goto st_case_47 - case 48: - goto st_case_48 - case 49: - goto st_case_49 - case 50: - goto st_case_50 - case 51: - goto st_case_51 - case 52: - goto st_case_52 - case 53: - goto st_case_53 - case 54: - goto st_case_54 - case 55: - goto st_case_55 - case 56: - goto st_case_56 - case 57: - goto st_case_57 - case 58: - goto st_case_58 - case 59: - goto st_case_59 - case 60: - goto st_case_60 - case 61: - goto st_case_61 - case 62: - goto st_case_62 - case 63: - goto st_case_63 - case 64: - goto st_case_64 - case 65: - goto st_case_65 - case 66: - goto st_case_66 - case 67: - goto st_case_67 - case 68: - goto st_case_68 - case 69: - goto st_case_69 - case 70: - goto st_case_70 - case 71: - goto st_case_71 - case 767: - goto st_case_767 - case 72: - goto st_case_72 - case 73: - goto st_case_73 - case 74: - goto st_case_74 - case 75: - goto st_case_75 - case 76: - goto st_case_76 - case 77: - goto st_case_77 - case 78: - goto st_case_78 - case 79: - goto st_case_79 - case 80: - goto st_case_80 - case 81: - goto st_case_81 - case 82: - goto st_case_82 - case 83: - goto st_case_83 - case 84: - goto st_case_84 - case 85: - goto st_case_85 - case 86: - goto st_case_86 - case 87: - goto st_case_87 - case 88: - goto st_case_88 - case 89: - goto st_case_89 - case 90: - goto st_case_90 - case 91: - goto st_case_91 - case 92: - goto st_case_92 - case 93: - goto st_case_93 - case 94: - goto st_case_94 - case 95: - goto st_case_95 - case 96: - goto st_case_96 - case 97: - goto st_case_97 - case 98: - goto st_case_98 - case 99: - goto st_case_99 - case 100: - goto st_case_100 - case 101: - goto st_case_101 - case 102: - goto st_case_102 - case 103: - goto st_case_103 - case 104: - goto st_case_104 - case 105: - goto st_case_105 - case 106: - goto st_case_106 - case 107: - goto st_case_107 - case 108: - goto st_case_108 - case 109: - goto st_case_109 - case 110: - goto st_case_110 - case 111: - goto st_case_111 - case 112: - goto st_case_112 - case 113: - goto st_case_113 - case 114: - goto st_case_114 - case 768: - goto st_case_768 - case 115: - goto st_case_115 - case 116: - goto st_case_116 - case 117: - goto st_case_117 - case 118: - goto st_case_118 - case 119: - goto st_case_119 - case 120: - goto st_case_120 - case 121: - goto st_case_121 - case 122: - goto st_case_122 - case 123: - goto st_case_123 - case 124: - goto st_case_124 - case 125: - goto st_case_125 - case 126: - goto st_case_126 - case 127: - goto st_case_127 - case 128: - goto st_case_128 - case 129: - goto st_case_129 - case 130: - goto st_case_130 - case 131: - goto st_case_131 - case 132: - goto st_case_132 - case 133: - goto st_case_133 - case 134: - goto st_case_134 - case 135: - goto st_case_135 - case 136: - goto st_case_136 - case 137: - goto st_case_137 - case 138: - goto st_case_138 - case 139: - goto st_case_139 - case 140: - goto st_case_140 - case 141: - goto st_case_141 - case 142: - goto st_case_142 - case 143: - goto st_case_143 - case 144: - goto st_case_144 - case 145: - goto st_case_145 - case 146: - goto st_case_146 - case 147: - goto st_case_147 - case 148: - goto st_case_148 - case 149: - goto st_case_149 - case 150: - goto st_case_150 - case 151: - goto st_case_151 - case 152: - goto st_case_152 - case 153: - goto st_case_153 - case 154: - goto st_case_154 - case 155: - goto st_case_155 - case 156: - goto st_case_156 - case 769: - goto st_case_769 - case 157: - goto st_case_157 - case 158: - goto st_case_158 - case 159: - goto st_case_159 - case 160: - goto st_case_160 - case 161: - goto st_case_161 - case 162: - goto st_case_162 - case 163: - goto st_case_163 - case 164: - goto st_case_164 - case 165: - goto st_case_165 - case 166: - goto st_case_166 - case 167: - goto st_case_167 - case 168: - goto st_case_168 - case 169: - goto st_case_169 - case 170: - goto st_case_170 - case 171: - goto st_case_171 - case 172: - goto st_case_172 - case 173: - goto st_case_173 - case 174: - goto st_case_174 - case 175: - goto st_case_175 - case 176: - goto st_case_176 - case 177: - goto st_case_177 - case 178: - goto st_case_178 - case 179: - goto st_case_179 - case 180: - goto st_case_180 - case 181: - goto st_case_181 - case 182: - goto st_case_182 - case 183: - goto st_case_183 - case 184: - goto st_case_184 - case 185: - goto st_case_185 - case 186: - goto st_case_186 - case 187: - goto st_case_187 - case 188: - goto st_case_188 - case 189: - goto st_case_189 - case 190: - goto st_case_190 - case 191: - goto st_case_191 - case 192: - goto st_case_192 - case 193: - goto st_case_193 - case 194: - goto st_case_194 - case 195: - goto st_case_195 - case 770: - goto st_case_770 - case 196: - goto st_case_196 - case 197: - goto st_case_197 - case 198: - goto st_case_198 - case 199: - goto st_case_199 - case 200: - goto st_case_200 - case 201: - goto st_case_201 - case 202: - goto st_case_202 - case 203: - goto st_case_203 - case 204: - goto st_case_204 - case 205: - goto st_case_205 - case 206: - goto st_case_206 - case 207: - goto st_case_207 - case 208: - goto st_case_208 - case 209: - goto st_case_209 - case 210: - goto st_case_210 - case 211: - goto st_case_211 - case 212: - goto st_case_212 - case 213: - goto st_case_213 - case 214: - goto st_case_214 - case 215: - goto st_case_215 - case 216: - goto st_case_216 - case 217: - goto st_case_217 - case 218: - goto st_case_218 - case 219: - goto st_case_219 - case 220: - goto st_case_220 - case 221: - goto st_case_221 - case 222: - goto st_case_222 - case 223: - goto st_case_223 - case 224: - goto st_case_224 - case 225: - goto st_case_225 - case 226: - goto st_case_226 - case 227: - goto st_case_227 - case 228: - goto st_case_228 - case 229: - goto st_case_229 - case 230: - goto st_case_230 - case 231: - goto st_case_231 - case 232: - goto st_case_232 - case 233: - goto st_case_233 - case 234: - goto st_case_234 - case 771: - goto st_case_771 - case 235: - goto st_case_235 - case 236: - goto st_case_236 - case 237: - goto st_case_237 - case 238: - goto st_case_238 - case 239: - goto st_case_239 - case 240: - goto st_case_240 - case 241: - goto st_case_241 - case 242: - goto st_case_242 - case 243: - goto st_case_243 - case 244: - goto st_case_244 - case 245: - goto st_case_245 - case 246: - goto st_case_246 - case 772: - goto st_case_772 - case 247: - goto st_case_247 - case 248: - goto st_case_248 - case 249: - goto st_case_249 - case 773: - goto st_case_773 - case 250: - goto st_case_250 - case 251: - goto st_case_251 - case 774: - goto st_case_774 - case 252: - goto st_case_252 - case 253: - goto st_case_253 - case 254: - goto st_case_254 - case 775: - goto st_case_775 - case 776: - goto st_case_776 - case 777: - goto st_case_777 - case 778: - goto st_case_778 - case 255: - goto st_case_255 - case 256: - goto st_case_256 - case 257: - goto st_case_257 - case 258: - goto st_case_258 - case 779: - goto st_case_779 - case 259: - goto st_case_259 - case 260: - goto st_case_260 - case 261: - goto st_case_261 - case 262: - goto st_case_262 - case 263: - goto st_case_263 - case 264: - goto st_case_264 - case 265: - goto st_case_265 - case 266: - goto st_case_266 - case 267: - goto st_case_267 - case 268: - goto st_case_268 - case 269: - goto st_case_269 - case 270: - goto st_case_270 - case 780: - goto st_case_780 - case 271: - goto st_case_271 - case 272: - goto st_case_272 - case 273: - goto st_case_273 - case 274: - goto st_case_274 - case 275: - goto st_case_275 - case 276: - goto st_case_276 - case 781: - goto st_case_781 - case 277: - goto st_case_277 - case 278: - goto st_case_278 - case 279: - goto st_case_279 - case 280: - goto st_case_280 - case 281: - goto st_case_281 - case 282: - goto st_case_282 - case 283: - goto st_case_283 - case 284: - goto st_case_284 - case 782: - goto st_case_782 - case 285: - goto st_case_285 - case 286: - goto st_case_286 - case 287: - goto st_case_287 - case 288: - goto st_case_288 - case 289: - goto st_case_289 - case 290: - goto st_case_290 - case 291: - goto st_case_291 - case 292: - goto st_case_292 - case 293: - goto st_case_293 - case 294: - goto st_case_294 - case 295: - goto st_case_295 - case 296: - goto st_case_296 - case 297: - goto st_case_297 - case 298: - goto st_case_298 - case 299: - goto st_case_299 - case 300: - goto st_case_300 - case 301: - goto st_case_301 - case 302: - goto st_case_302 - case 303: - goto st_case_303 - case 304: - goto st_case_304 - case 305: - goto st_case_305 - case 306: - goto st_case_306 - case 307: - goto st_case_307 - case 308: - goto st_case_308 - case 309: - goto st_case_309 - case 310: - goto st_case_310 - case 311: - goto st_case_311 - case 312: - goto st_case_312 - case 313: - goto st_case_313 - case 314: - goto st_case_314 - case 315: - goto st_case_315 - case 316: - goto st_case_316 - case 317: - goto st_case_317 - case 318: - goto st_case_318 - case 319: - goto st_case_319 - case 320: - goto st_case_320 - case 321: - goto st_case_321 - case 322: - goto st_case_322 - case 323: - goto st_case_323 - case 324: - goto st_case_324 - case 325: - goto st_case_325 - case 326: - goto st_case_326 - case 327: - goto st_case_327 - case 328: - goto st_case_328 - case 329: - goto st_case_329 - case 330: - goto st_case_330 - case 331: - goto st_case_331 - case 332: - goto st_case_332 - case 333: - goto st_case_333 - case 334: - goto st_case_334 - case 335: - goto st_case_335 - case 336: - goto st_case_336 - case 337: - goto st_case_337 - case 338: - goto st_case_338 - case 339: - goto st_case_339 - case 340: - goto st_case_340 - case 341: - goto st_case_341 - case 342: - goto st_case_342 - case 343: - goto st_case_343 - case 344: - goto st_case_344 - case 345: - goto st_case_345 - case 346: - goto st_case_346 - case 347: - goto st_case_347 - case 348: - goto st_case_348 - case 349: - goto st_case_349 - case 350: - goto st_case_350 - case 351: - goto st_case_351 - case 352: - goto st_case_352 - case 353: - goto st_case_353 - case 354: - goto st_case_354 - case 355: - goto st_case_355 - case 356: - goto st_case_356 - case 357: - goto st_case_357 - case 358: - goto st_case_358 - case 359: - goto st_case_359 - case 360: - goto st_case_360 - case 361: - goto st_case_361 - case 362: - goto st_case_362 - case 363: - goto st_case_363 - case 364: - goto st_case_364 - case 365: - goto st_case_365 - case 366: - goto st_case_366 - case 367: - goto st_case_367 - case 368: - goto st_case_368 - case 369: - goto st_case_369 - case 370: - goto st_case_370 - case 371: - goto st_case_371 - case 372: - goto st_case_372 - case 373: - goto st_case_373 - case 374: - goto st_case_374 - case 375: - goto st_case_375 - case 376: - goto st_case_376 - case 377: - goto st_case_377 - case 378: - goto st_case_378 - case 379: - goto st_case_379 - case 380: - goto st_case_380 - case 381: - goto st_case_381 - case 382: - goto st_case_382 - case 383: - goto st_case_383 - case 384: - goto st_case_384 - case 385: - goto st_case_385 - case 386: - goto st_case_386 - case 387: - goto st_case_387 - case 388: - goto st_case_388 - case 389: - goto st_case_389 - case 390: - goto st_case_390 - case 391: - goto st_case_391 - case 392: - goto st_case_392 - case 393: - goto st_case_393 - case 394: - goto st_case_394 - case 395: - goto st_case_395 - case 396: - goto st_case_396 - case 397: - goto st_case_397 - case 398: - goto st_case_398 - case 399: - goto st_case_399 - case 400: - goto st_case_400 - case 401: - goto st_case_401 - case 402: - goto st_case_402 - case 403: - goto st_case_403 - case 404: - goto st_case_404 - case 405: - goto st_case_405 - case 406: - goto st_case_406 - case 407: - goto st_case_407 - case 408: - goto st_case_408 - case 409: - goto st_case_409 - case 410: - goto st_case_410 - case 411: - goto st_case_411 - case 412: - goto st_case_412 - case 413: - goto st_case_413 - case 414: - goto st_case_414 - case 415: - goto st_case_415 - case 416: - goto st_case_416 - case 417: - goto st_case_417 - case 418: - goto st_case_418 - case 419: - goto st_case_419 - case 420: - goto st_case_420 - case 421: - goto st_case_421 - case 422: - goto st_case_422 - case 423: - goto st_case_423 - case 424: - goto st_case_424 - case 425: - goto st_case_425 - case 426: - goto st_case_426 - case 427: - goto st_case_427 - case 428: - goto st_case_428 - case 429: - goto st_case_429 - case 430: - goto st_case_430 - case 431: - goto st_case_431 - case 432: - goto st_case_432 - case 433: - goto st_case_433 - case 434: - goto st_case_434 - case 435: - goto st_case_435 - case 436: - goto st_case_436 - case 437: - goto st_case_437 - case 438: - goto st_case_438 - case 439: - goto st_case_439 - case 440: - goto st_case_440 - case 441: - goto st_case_441 - case 442: - goto st_case_442 - case 443: - goto st_case_443 - case 444: - goto st_case_444 - case 445: - goto st_case_445 - case 446: - goto st_case_446 - case 447: - goto st_case_447 - case 448: - goto st_case_448 - case 449: - goto st_case_449 - case 450: - goto st_case_450 - case 451: - goto st_case_451 - case 452: - goto st_case_452 - case 453: - goto st_case_453 - case 454: - goto st_case_454 - case 455: - goto st_case_455 - case 456: - goto st_case_456 - case 457: - goto st_case_457 - case 458: - goto st_case_458 - case 459: - goto st_case_459 - case 460: - goto st_case_460 - case 461: - goto st_case_461 - case 462: - goto st_case_462 - case 463: - goto st_case_463 - case 464: - goto st_case_464 - case 465: - goto st_case_465 - case 466: - goto st_case_466 - case 467: - goto st_case_467 - case 468: - goto st_case_468 - case 469: - goto st_case_469 - case 470: - goto st_case_470 - case 471: - goto st_case_471 - case 472: - goto st_case_472 - case 473: - goto st_case_473 - case 474: - goto st_case_474 - case 475: - goto st_case_475 - case 476: - goto st_case_476 - case 477: - goto st_case_477 - case 478: - goto st_case_478 - case 479: - goto st_case_479 - case 480: - goto st_case_480 - case 481: - goto st_case_481 - case 482: - goto st_case_482 - case 483: - goto st_case_483 - case 484: - goto st_case_484 - case 485: - goto st_case_485 - case 486: - goto st_case_486 - case 487: - goto st_case_487 - case 488: - goto st_case_488 - case 489: - goto st_case_489 - case 490: - goto st_case_490 - case 491: - goto st_case_491 - case 492: - goto st_case_492 - case 493: - goto st_case_493 - case 494: - goto st_case_494 - case 495: - goto st_case_495 - case 496: - goto st_case_496 - case 497: - goto st_case_497 - case 498: - goto st_case_498 - case 499: - goto st_case_499 - case 500: - goto st_case_500 - case 501: - goto st_case_501 - case 502: - goto st_case_502 - case 503: - goto st_case_503 - case 504: - goto st_case_504 - case 505: - goto st_case_505 - case 506: - goto st_case_506 - case 507: - goto st_case_507 - case 508: - goto st_case_508 - case 509: - goto st_case_509 - case 510: - goto st_case_510 - case 511: - goto st_case_511 - case 512: - goto st_case_512 - case 513: - goto st_case_513 - case 514: - goto st_case_514 - case 515: - goto st_case_515 - case 516: - goto st_case_516 - case 517: - goto st_case_517 - case 518: - goto st_case_518 - case 519: - goto st_case_519 - case 520: - goto st_case_520 - case 521: - goto st_case_521 - case 522: - goto st_case_522 - case 523: - goto st_case_523 - case 524: - goto st_case_524 - case 525: - goto st_case_525 - case 526: - goto st_case_526 - case 527: - goto st_case_527 - case 528: - goto st_case_528 - case 529: - goto st_case_529 - case 530: - goto st_case_530 - case 531: - goto st_case_531 - case 532: - goto st_case_532 - case 533: - goto st_case_533 - case 534: - goto st_case_534 - case 535: - goto st_case_535 - case 536: - goto st_case_536 - case 537: - goto st_case_537 - case 538: - goto st_case_538 - case 539: - goto st_case_539 - case 540: - goto st_case_540 - case 541: - goto st_case_541 - case 542: - goto st_case_542 - case 543: - goto st_case_543 - case 544: - goto st_case_544 - case 545: - goto st_case_545 - case 546: - goto st_case_546 - case 547: - goto st_case_547 - case 548: - goto st_case_548 - case 549: - goto st_case_549 - case 550: - goto st_case_550 - case 551: - goto st_case_551 - case 552: - goto st_case_552 - case 553: - goto st_case_553 - case 554: - goto st_case_554 - case 555: - goto st_case_555 - case 556: - goto st_case_556 - case 557: - goto st_case_557 - case 558: - goto st_case_558 - case 559: - goto st_case_559 - case 560: - goto st_case_560 - case 561: - goto st_case_561 - case 562: - goto st_case_562 - case 563: - goto st_case_563 - case 564: - goto st_case_564 - case 565: - goto st_case_565 - case 566: - goto st_case_566 - case 567: - goto st_case_567 - case 568: - goto st_case_568 - case 569: - goto st_case_569 - case 570: - goto st_case_570 - case 571: - goto st_case_571 - case 572: - goto st_case_572 - case 573: - goto st_case_573 - case 574: - goto st_case_574 - case 575: - goto st_case_575 - case 576: - goto st_case_576 - case 577: - goto st_case_577 - case 578: - goto st_case_578 - case 579: - goto st_case_579 - case 580: - goto st_case_580 - case 581: - goto st_case_581 - case 582: - goto st_case_582 - case 583: - goto st_case_583 - case 584: - goto st_case_584 - case 585: - goto st_case_585 - case 586: - goto st_case_586 - case 587: - goto st_case_587 - case 588: - goto st_case_588 - case 589: - goto st_case_589 - case 590: - goto st_case_590 - case 591: - goto st_case_591 - case 592: - goto st_case_592 - case 593: - goto st_case_593 - case 594: - goto st_case_594 - case 595: - goto st_case_595 - case 596: - goto st_case_596 - case 597: - goto st_case_597 - case 598: - goto st_case_598 - case 599: - goto st_case_599 - case 600: - goto st_case_600 - case 601: - goto st_case_601 - case 602: - goto st_case_602 - case 603: - goto st_case_603 - case 604: - goto st_case_604 - case 605: - goto st_case_605 - case 606: - goto st_case_606 - case 607: - goto st_case_607 - case 608: - goto st_case_608 - case 609: - goto st_case_609 - case 610: - goto st_case_610 - case 611: - goto st_case_611 - case 612: - goto st_case_612 - case 613: - goto st_case_613 - case 614: - goto st_case_614 - case 615: - goto st_case_615 - case 616: - goto st_case_616 - case 617: - goto st_case_617 - case 618: - goto st_case_618 - case 619: - goto st_case_619 - case 620: - goto st_case_620 - case 621: - goto st_case_621 - case 622: - goto st_case_622 - case 623: - goto st_case_623 - case 624: - goto st_case_624 - case 625: - goto st_case_625 - case 626: - goto st_case_626 - case 627: - goto st_case_627 - case 628: - goto st_case_628 - case 629: - goto st_case_629 - case 630: - goto st_case_630 - case 631: - goto st_case_631 - case 632: - goto st_case_632 - case 633: - goto st_case_633 - case 634: - goto st_case_634 - case 635: - goto st_case_635 - case 636: - goto st_case_636 - case 637: - goto st_case_637 - case 638: - goto st_case_638 - case 639: - goto st_case_639 - case 640: - goto st_case_640 - case 641: - goto st_case_641 - case 642: - goto st_case_642 - case 643: - goto st_case_643 - case 644: - goto st_case_644 - case 645: - goto st_case_645 - case 646: - goto st_case_646 - case 647: - goto st_case_647 - case 648: - goto st_case_648 - case 649: - goto st_case_649 - case 650: - goto st_case_650 - case 651: - goto st_case_651 - case 652: - goto st_case_652 - case 653: - goto st_case_653 - case 654: - goto st_case_654 - case 655: - goto st_case_655 - case 656: - goto st_case_656 - case 657: - goto st_case_657 - case 658: - goto st_case_658 - case 659: - goto st_case_659 - case 660: - goto st_case_660 - case 661: - goto st_case_661 - case 662: - goto st_case_662 - case 663: - goto st_case_663 - case 664: - goto st_case_664 - case 665: - goto st_case_665 - case 666: - goto st_case_666 - case 667: - goto st_case_667 - case 668: - goto st_case_668 - case 669: - goto st_case_669 - case 670: - goto st_case_670 - case 671: - goto st_case_671 - case 672: - goto st_case_672 - case 673: - goto st_case_673 - case 674: - goto st_case_674 - case 675: - goto st_case_675 - case 676: - goto st_case_676 - case 677: - goto st_case_677 - case 678: - goto st_case_678 - case 679: - goto st_case_679 - case 680: - goto st_case_680 - case 681: - goto st_case_681 - case 682: - goto st_case_682 - case 683: - goto st_case_683 - case 684: - goto st_case_684 - case 685: - goto st_case_685 - case 686: - goto st_case_686 - case 687: - goto st_case_687 - case 688: - goto st_case_688 - case 689: - goto st_case_689 - case 690: - goto st_case_690 - case 691: - goto st_case_691 - case 692: - goto st_case_692 - case 693: - goto st_case_693 - case 694: - goto st_case_694 - case 695: - goto st_case_695 - case 696: - goto st_case_696 - case 697: - goto st_case_697 - case 698: - goto st_case_698 - case 699: - goto st_case_699 - case 700: - goto st_case_700 - case 701: - goto st_case_701 - case 702: - goto st_case_702 - case 703: - goto st_case_703 - case 704: - goto st_case_704 - case 705: - goto st_case_705 - case 706: - goto st_case_706 - case 707: - goto st_case_707 - case 708: - goto st_case_708 - case 709: - goto st_case_709 - case 710: - goto st_case_710 - case 711: - goto st_case_711 - case 712: - goto st_case_712 - case 713: - goto st_case_713 - case 714: - goto st_case_714 - case 715: - goto st_case_715 - case 716: - goto st_case_716 - case 717: - goto st_case_717 - case 718: - goto st_case_718 - case 719: - goto st_case_719 - case 720: - goto st_case_720 - case 721: - goto st_case_721 - case 722: - goto st_case_722 - case 723: - goto st_case_723 - case 724: - goto st_case_724 - case 725: - goto st_case_725 - case 726: - goto st_case_726 - case 727: - goto st_case_727 - case 728: - goto st_case_728 - case 729: - goto st_case_729 - case 730: - goto st_case_730 - case 731: - goto st_case_731 - case 732: - goto st_case_732 - case 733: - goto st_case_733 - case 734: - goto st_case_734 - case 735: - goto st_case_735 - case 736: - goto st_case_736 - case 737: - goto st_case_737 - case 738: - goto st_case_738 - case 739: - goto st_case_739 - case 740: - goto st_case_740 - case 741: - goto st_case_741 - case 742: - goto st_case_742 - case 743: - goto st_case_743 - case 744: - goto st_case_744 - case 745: - goto st_case_745 - case 746: - goto st_case_746 - case 747: - goto st_case_747 - case 748: - goto st_case_748 - case 749: - goto st_case_749 - case 750: - goto st_case_750 - case 751: - goto st_case_751 - case 752: - goto st_case_752 - case 753: - goto st_case_753 - case 754: - goto st_case_754 - case 755: - goto st_case_755 - case 756: - goto st_case_756 - case 757: - goto st_case_757 - case 758: - goto st_case_758 - case 759: - goto st_case_759 - case 760: - goto st_case_760 - case 761: - goto st_case_761 - case 762: - goto st_case_762 - case 763: - goto st_case_763 - case 764: - goto st_case_764 - } - goto st_out + var _widec int16 + if p == pe { + goto _test_eof + } + switch cs { + case 1: + goto st_case_1 + case 0: + goto st_case_0 + case 2: + goto st_case_2 + case 3: + goto st_case_3 + case 4: + goto st_case_4 + case 5: + goto st_case_5 + case 6: + goto st_case_6 + case 7: + goto st_case_7 + case 8: + goto st_case_8 + case 9: + goto st_case_9 + case 10: + goto st_case_10 + case 11: + goto st_case_11 + case 12: + goto st_case_12 + case 13: + goto st_case_13 + case 765: + goto st_case_765 + case 14: + goto st_case_14 + case 15: + goto st_case_15 + case 16: + goto st_case_16 + case 17: + goto st_case_17 + case 18: + goto st_case_18 + case 19: + goto st_case_19 + case 20: + goto st_case_20 + case 21: + goto st_case_21 + case 22: + goto st_case_22 + case 23: + goto st_case_23 + case 24: + goto st_case_24 + case 25: + goto st_case_25 + case 26: + goto st_case_26 + case 27: + goto st_case_27 + case 28: + goto st_case_28 + case 29: + goto st_case_29 + case 30: + goto st_case_30 + case 31: + goto st_case_31 + case 32: + goto st_case_32 + case 33: + goto st_case_33 + case 34: + goto st_case_34 + case 35: + goto st_case_35 + case 36: + goto st_case_36 + case 37: + goto st_case_37 + case 38: + goto st_case_38 + case 39: + goto st_case_39 + case 40: + goto st_case_40 + case 41: + goto st_case_41 + case 42: + goto st_case_42 + case 43: + goto st_case_43 + case 44: + goto st_case_44 + case 766: + goto st_case_766 + case 45: + goto st_case_45 + case 46: + goto st_case_46 + case 47: + goto st_case_47 + case 48: + goto st_case_48 + case 49: + goto st_case_49 + case 50: + goto st_case_50 + case 51: + goto st_case_51 + case 52: + goto st_case_52 + case 53: + goto st_case_53 + case 54: + goto st_case_54 + case 55: + goto st_case_55 + case 56: + goto st_case_56 + case 57: + goto st_case_57 + case 58: + goto st_case_58 + case 59: + goto st_case_59 + case 60: + goto st_case_60 + case 61: + goto st_case_61 + case 62: + goto st_case_62 + case 63: + goto st_case_63 + case 64: + goto st_case_64 + case 65: + goto st_case_65 + case 66: + goto st_case_66 + case 67: + goto st_case_67 + case 68: + goto st_case_68 + case 69: + goto st_case_69 + case 70: + goto st_case_70 + case 71: + goto st_case_71 + case 767: + goto st_case_767 + case 72: + goto st_case_72 + case 73: + goto st_case_73 + case 74: + goto st_case_74 + case 75: + goto st_case_75 + case 76: + goto st_case_76 + case 77: + goto st_case_77 + case 78: + goto st_case_78 + case 79: + goto st_case_79 + case 80: + goto st_case_80 + case 81: + goto st_case_81 + case 82: + goto st_case_82 + case 83: + goto st_case_83 + case 84: + goto st_case_84 + case 85: + goto st_case_85 + case 86: + goto st_case_86 + case 87: + goto st_case_87 + case 88: + goto st_case_88 + case 89: + goto st_case_89 + case 90: + goto st_case_90 + case 91: + goto st_case_91 + case 92: + goto st_case_92 + case 93: + goto st_case_93 + case 94: + goto st_case_94 + case 95: + goto st_case_95 + case 96: + goto st_case_96 + case 97: + goto st_case_97 + case 98: + goto st_case_98 + case 99: + goto st_case_99 + case 100: + goto st_case_100 + case 101: + goto st_case_101 + case 102: + goto st_case_102 + case 103: + goto st_case_103 + case 104: + goto st_case_104 + case 105: + goto st_case_105 + case 106: + goto st_case_106 + case 107: + goto st_case_107 + case 108: + goto st_case_108 + case 109: + goto st_case_109 + case 110: + goto st_case_110 + case 111: + goto st_case_111 + case 112: + goto st_case_112 + case 113: + goto st_case_113 + case 114: + goto st_case_114 + case 768: + goto st_case_768 + case 115: + goto st_case_115 + case 116: + goto st_case_116 + case 117: + goto st_case_117 + case 118: + goto st_case_118 + case 119: + goto st_case_119 + case 120: + goto st_case_120 + case 121: + goto st_case_121 + case 122: + goto st_case_122 + case 123: + goto st_case_123 + case 124: + goto st_case_124 + case 125: + goto st_case_125 + case 126: + goto st_case_126 + case 127: + goto st_case_127 + case 128: + goto st_case_128 + case 129: + goto st_case_129 + case 130: + goto st_case_130 + case 131: + goto st_case_131 + case 132: + goto st_case_132 + case 133: + goto st_case_133 + case 134: + goto st_case_134 + case 135: + goto st_case_135 + case 136: + goto st_case_136 + case 137: + goto st_case_137 + case 138: + goto st_case_138 + case 139: + goto st_case_139 + case 140: + goto st_case_140 + case 141: + goto st_case_141 + case 142: + goto st_case_142 + case 143: + goto st_case_143 + case 144: + goto st_case_144 + case 145: + goto st_case_145 + case 146: + goto st_case_146 + case 147: + goto st_case_147 + case 148: + goto st_case_148 + case 149: + goto st_case_149 + case 150: + goto st_case_150 + case 151: + goto st_case_151 + case 152: + goto st_case_152 + case 153: + goto st_case_153 + case 154: + goto st_case_154 + case 155: + goto st_case_155 + case 156: + goto st_case_156 + case 769: + goto st_case_769 + case 157: + goto st_case_157 + case 158: + goto st_case_158 + case 159: + goto st_case_159 + case 160: + goto st_case_160 + case 161: + goto st_case_161 + case 162: + goto st_case_162 + case 163: + goto st_case_163 + case 164: + goto st_case_164 + case 165: + goto st_case_165 + case 166: + goto st_case_166 + case 167: + goto st_case_167 + case 168: + goto st_case_168 + case 169: + goto st_case_169 + case 170: + goto st_case_170 + case 171: + goto st_case_171 + case 172: + goto st_case_172 + case 173: + goto st_case_173 + case 174: + goto st_case_174 + case 175: + goto st_case_175 + case 176: + goto st_case_176 + case 177: + goto st_case_177 + case 178: + goto st_case_178 + case 179: + goto st_case_179 + case 180: + goto st_case_180 + case 181: + goto st_case_181 + case 182: + goto st_case_182 + case 183: + goto st_case_183 + case 184: + goto st_case_184 + case 185: + goto st_case_185 + case 186: + goto st_case_186 + case 187: + goto st_case_187 + case 188: + goto st_case_188 + case 189: + goto st_case_189 + case 190: + goto st_case_190 + case 191: + goto st_case_191 + case 192: + goto st_case_192 + case 193: + goto st_case_193 + case 194: + goto st_case_194 + case 195: + goto st_case_195 + case 770: + goto st_case_770 + case 196: + goto st_case_196 + case 197: + goto st_case_197 + case 198: + goto st_case_198 + case 199: + goto st_case_199 + case 200: + goto st_case_200 + case 201: + goto st_case_201 + case 202: + goto st_case_202 + case 203: + goto st_case_203 + case 204: + goto st_case_204 + case 205: + goto st_case_205 + case 206: + goto st_case_206 + case 207: + goto st_case_207 + case 208: + goto st_case_208 + case 209: + goto st_case_209 + case 210: + goto st_case_210 + case 211: + goto st_case_211 + case 212: + goto st_case_212 + case 213: + goto st_case_213 + case 214: + goto st_case_214 + case 215: + goto st_case_215 + case 216: + goto st_case_216 + case 217: + goto st_case_217 + case 218: + goto st_case_218 + case 219: + goto st_case_219 + case 220: + goto st_case_220 + case 221: + goto st_case_221 + case 222: + goto st_case_222 + case 223: + goto st_case_223 + case 224: + goto st_case_224 + case 225: + goto st_case_225 + case 226: + goto st_case_226 + case 227: + goto st_case_227 + case 228: + goto st_case_228 + case 229: + goto st_case_229 + case 230: + goto st_case_230 + case 231: + goto st_case_231 + case 232: + goto st_case_232 + case 233: + goto st_case_233 + case 234: + goto st_case_234 + case 771: + goto st_case_771 + case 235: + goto st_case_235 + case 236: + goto st_case_236 + case 237: + goto st_case_237 + case 238: + goto st_case_238 + case 239: + goto st_case_239 + case 240: + goto st_case_240 + case 241: + goto st_case_241 + case 242: + goto st_case_242 + case 243: + goto st_case_243 + case 244: + goto st_case_244 + case 245: + goto st_case_245 + case 246: + goto st_case_246 + case 772: + goto st_case_772 + case 247: + goto st_case_247 + case 248: + goto st_case_248 + case 249: + goto st_case_249 + case 773: + goto st_case_773 + case 250: + goto st_case_250 + case 251: + goto st_case_251 + case 774: + goto st_case_774 + case 252: + goto st_case_252 + case 253: + goto st_case_253 + case 254: + goto st_case_254 + case 775: + goto st_case_775 + case 776: + goto st_case_776 + case 777: + goto st_case_777 + case 778: + goto st_case_778 + case 255: + goto st_case_255 + case 256: + goto st_case_256 + case 257: + goto st_case_257 + case 258: + goto st_case_258 + case 779: + goto st_case_779 + case 259: + goto st_case_259 + case 260: + goto st_case_260 + case 261: + goto st_case_261 + case 262: + goto st_case_262 + case 263: + goto st_case_263 + case 264: + goto st_case_264 + case 265: + goto st_case_265 + case 266: + goto st_case_266 + case 267: + goto st_case_267 + case 268: + goto st_case_268 + case 269: + goto st_case_269 + case 270: + goto st_case_270 + case 780: + goto st_case_780 + case 271: + goto st_case_271 + case 272: + goto st_case_272 + case 273: + goto st_case_273 + case 274: + goto st_case_274 + case 275: + goto st_case_275 + case 276: + goto st_case_276 + case 781: + goto st_case_781 + case 277: + goto st_case_277 + case 278: + goto st_case_278 + case 279: + goto st_case_279 + case 280: + goto st_case_280 + case 281: + goto st_case_281 + case 282: + goto st_case_282 + case 283: + goto st_case_283 + case 284: + goto st_case_284 + case 782: + goto st_case_782 + case 285: + goto st_case_285 + case 286: + goto st_case_286 + case 287: + goto st_case_287 + case 288: + goto st_case_288 + case 289: + goto st_case_289 + case 290: + goto st_case_290 + case 291: + goto st_case_291 + case 292: + goto st_case_292 + case 293: + goto st_case_293 + case 294: + goto st_case_294 + case 295: + goto st_case_295 + case 296: + goto st_case_296 + case 297: + goto st_case_297 + case 298: + goto st_case_298 + case 299: + goto st_case_299 + case 300: + goto st_case_300 + case 301: + goto st_case_301 + case 302: + goto st_case_302 + case 303: + goto st_case_303 + case 304: + goto st_case_304 + case 305: + goto st_case_305 + case 306: + goto st_case_306 + case 307: + goto st_case_307 + case 308: + goto st_case_308 + case 309: + goto st_case_309 + case 310: + goto st_case_310 + case 311: + goto st_case_311 + case 312: + goto st_case_312 + case 313: + goto st_case_313 + case 314: + goto st_case_314 + case 315: + goto st_case_315 + case 316: + goto st_case_316 + case 317: + goto st_case_317 + case 318: + goto st_case_318 + case 319: + goto st_case_319 + case 320: + goto st_case_320 + case 321: + goto st_case_321 + case 322: + goto st_case_322 + case 323: + goto st_case_323 + case 324: + goto st_case_324 + case 325: + goto st_case_325 + case 326: + goto st_case_326 + case 327: + goto st_case_327 + case 328: + goto st_case_328 + case 329: + goto st_case_329 + case 330: + goto st_case_330 + case 331: + goto st_case_331 + case 332: + goto st_case_332 + case 333: + goto st_case_333 + case 334: + goto st_case_334 + case 335: + goto st_case_335 + case 336: + goto st_case_336 + case 337: + goto st_case_337 + case 338: + goto st_case_338 + case 339: + goto st_case_339 + case 340: + goto st_case_340 + case 341: + goto st_case_341 + case 342: + goto st_case_342 + case 343: + goto st_case_343 + case 344: + goto st_case_344 + case 345: + goto st_case_345 + case 346: + goto st_case_346 + case 347: + goto st_case_347 + case 348: + goto st_case_348 + case 349: + goto st_case_349 + case 350: + goto st_case_350 + case 351: + goto st_case_351 + case 352: + goto st_case_352 + case 353: + goto st_case_353 + case 354: + goto st_case_354 + case 355: + goto st_case_355 + case 356: + goto st_case_356 + case 357: + goto st_case_357 + case 358: + goto st_case_358 + case 359: + goto st_case_359 + case 360: + goto st_case_360 + case 361: + goto st_case_361 + case 362: + goto st_case_362 + case 363: + goto st_case_363 + case 364: + goto st_case_364 + case 365: + goto st_case_365 + case 366: + goto st_case_366 + case 367: + goto st_case_367 + case 368: + goto st_case_368 + case 369: + goto st_case_369 + case 370: + goto st_case_370 + case 371: + goto st_case_371 + case 372: + goto st_case_372 + case 373: + goto st_case_373 + case 374: + goto st_case_374 + case 375: + goto st_case_375 + case 376: + goto st_case_376 + case 377: + goto st_case_377 + case 378: + goto st_case_378 + case 379: + goto st_case_379 + case 380: + goto st_case_380 + case 381: + goto st_case_381 + case 382: + goto st_case_382 + case 383: + goto st_case_383 + case 384: + goto st_case_384 + case 385: + goto st_case_385 + case 386: + goto st_case_386 + case 387: + goto st_case_387 + case 388: + goto st_case_388 + case 389: + goto st_case_389 + case 390: + goto st_case_390 + case 391: + goto st_case_391 + case 392: + goto st_case_392 + case 393: + goto st_case_393 + case 394: + goto st_case_394 + case 395: + goto st_case_395 + case 396: + goto st_case_396 + case 397: + goto st_case_397 + case 398: + goto st_case_398 + case 399: + goto st_case_399 + case 400: + goto st_case_400 + case 401: + goto st_case_401 + case 402: + goto st_case_402 + case 403: + goto st_case_403 + case 404: + goto st_case_404 + case 405: + goto st_case_405 + case 406: + goto st_case_406 + case 407: + goto st_case_407 + case 408: + goto st_case_408 + case 409: + goto st_case_409 + case 410: + goto st_case_410 + case 411: + goto st_case_411 + case 412: + goto st_case_412 + case 413: + goto st_case_413 + case 414: + goto st_case_414 + case 415: + goto st_case_415 + case 416: + goto st_case_416 + case 417: + goto st_case_417 + case 418: + goto st_case_418 + case 419: + goto st_case_419 + case 420: + goto st_case_420 + case 421: + goto st_case_421 + case 422: + goto st_case_422 + case 423: + goto st_case_423 + case 424: + goto st_case_424 + case 425: + goto st_case_425 + case 426: + goto st_case_426 + case 427: + goto st_case_427 + case 428: + goto st_case_428 + case 429: + goto st_case_429 + case 430: + goto st_case_430 + case 431: + goto st_case_431 + case 432: + goto st_case_432 + case 433: + goto st_case_433 + case 434: + goto st_case_434 + case 435: + goto st_case_435 + case 436: + goto st_case_436 + case 437: + goto st_case_437 + case 438: + goto st_case_438 + case 439: + goto st_case_439 + case 440: + goto st_case_440 + case 441: + goto st_case_441 + case 442: + goto st_case_442 + case 443: + goto st_case_443 + case 444: + goto st_case_444 + case 445: + goto st_case_445 + case 446: + goto st_case_446 + case 447: + goto st_case_447 + case 448: + goto st_case_448 + case 449: + goto st_case_449 + case 450: + goto st_case_450 + case 451: + goto st_case_451 + case 452: + goto st_case_452 + case 453: + goto st_case_453 + case 454: + goto st_case_454 + case 455: + goto st_case_455 + case 456: + goto st_case_456 + case 457: + goto st_case_457 + case 458: + goto st_case_458 + case 459: + goto st_case_459 + case 460: + goto st_case_460 + case 461: + goto st_case_461 + case 462: + goto st_case_462 + case 463: + goto st_case_463 + case 464: + goto st_case_464 + case 465: + goto st_case_465 + case 466: + goto st_case_466 + case 467: + goto st_case_467 + case 468: + goto st_case_468 + case 469: + goto st_case_469 + case 470: + goto st_case_470 + case 471: + goto st_case_471 + case 472: + goto st_case_472 + case 473: + goto st_case_473 + case 474: + goto st_case_474 + case 475: + goto st_case_475 + case 476: + goto st_case_476 + case 477: + goto st_case_477 + case 478: + goto st_case_478 + case 479: + goto st_case_479 + case 480: + goto st_case_480 + case 481: + goto st_case_481 + case 482: + goto st_case_482 + case 483: + goto st_case_483 + case 484: + goto st_case_484 + case 485: + goto st_case_485 + case 486: + goto st_case_486 + case 487: + goto st_case_487 + case 488: + goto st_case_488 + case 489: + goto st_case_489 + case 490: + goto st_case_490 + case 491: + goto st_case_491 + case 492: + goto st_case_492 + case 493: + goto st_case_493 + case 494: + goto st_case_494 + case 495: + goto st_case_495 + case 496: + goto st_case_496 + case 497: + goto st_case_497 + case 498: + goto st_case_498 + case 499: + goto st_case_499 + case 500: + goto st_case_500 + case 501: + goto st_case_501 + case 502: + goto st_case_502 + case 503: + goto st_case_503 + case 504: + goto st_case_504 + case 505: + goto st_case_505 + case 506: + goto st_case_506 + case 507: + goto st_case_507 + case 508: + goto st_case_508 + case 509: + goto st_case_509 + case 510: + goto st_case_510 + case 511: + goto st_case_511 + case 512: + goto st_case_512 + case 513: + goto st_case_513 + case 514: + goto st_case_514 + case 515: + goto st_case_515 + case 516: + goto st_case_516 + case 517: + goto st_case_517 + case 518: + goto st_case_518 + case 519: + goto st_case_519 + case 520: + goto st_case_520 + case 521: + goto st_case_521 + case 522: + goto st_case_522 + case 523: + goto st_case_523 + case 524: + goto st_case_524 + case 525: + goto st_case_525 + case 526: + goto st_case_526 + case 527: + goto st_case_527 + case 528: + goto st_case_528 + case 529: + goto st_case_529 + case 530: + goto st_case_530 + case 531: + goto st_case_531 + case 532: + goto st_case_532 + case 533: + goto st_case_533 + case 534: + goto st_case_534 + case 535: + goto st_case_535 + case 536: + goto st_case_536 + case 537: + goto st_case_537 + case 538: + goto st_case_538 + case 539: + goto st_case_539 + case 540: + goto st_case_540 + case 541: + goto st_case_541 + case 542: + goto st_case_542 + case 543: + goto st_case_543 + case 544: + goto st_case_544 + case 545: + goto st_case_545 + case 546: + goto st_case_546 + case 547: + goto st_case_547 + case 548: + goto st_case_548 + case 549: + goto st_case_549 + case 550: + goto st_case_550 + case 551: + goto st_case_551 + case 552: + goto st_case_552 + case 553: + goto st_case_553 + case 554: + goto st_case_554 + case 555: + goto st_case_555 + case 556: + goto st_case_556 + case 557: + goto st_case_557 + case 558: + goto st_case_558 + case 559: + goto st_case_559 + case 560: + goto st_case_560 + case 561: + goto st_case_561 + case 562: + goto st_case_562 + case 563: + goto st_case_563 + case 564: + goto st_case_564 + case 565: + goto st_case_565 + case 566: + goto st_case_566 + case 567: + goto st_case_567 + case 568: + goto st_case_568 + case 569: + goto st_case_569 + case 570: + goto st_case_570 + case 571: + goto st_case_571 + case 572: + goto st_case_572 + case 573: + goto st_case_573 + case 574: + goto st_case_574 + case 575: + goto st_case_575 + case 576: + goto st_case_576 + case 577: + goto st_case_577 + case 578: + goto st_case_578 + case 579: + goto st_case_579 + case 580: + goto st_case_580 + case 581: + goto st_case_581 + case 582: + goto st_case_582 + case 583: + goto st_case_583 + case 584: + goto st_case_584 + case 585: + goto st_case_585 + case 586: + goto st_case_586 + case 587: + goto st_case_587 + case 588: + goto st_case_588 + case 589: + goto st_case_589 + case 590: + goto st_case_590 + case 591: + goto st_case_591 + case 592: + goto st_case_592 + case 593: + goto st_case_593 + case 594: + goto st_case_594 + case 595: + goto st_case_595 + case 596: + goto st_case_596 + case 597: + goto st_case_597 + case 598: + goto st_case_598 + case 599: + goto st_case_599 + case 600: + goto st_case_600 + case 601: + goto st_case_601 + case 602: + goto st_case_602 + case 603: + goto st_case_603 + case 604: + goto st_case_604 + case 605: + goto st_case_605 + case 606: + goto st_case_606 + case 607: + goto st_case_607 + case 608: + goto st_case_608 + case 609: + goto st_case_609 + case 610: + goto st_case_610 + case 611: + goto st_case_611 + case 612: + goto st_case_612 + case 613: + goto st_case_613 + case 614: + goto st_case_614 + case 615: + goto st_case_615 + case 616: + goto st_case_616 + case 617: + goto st_case_617 + case 618: + goto st_case_618 + case 619: + goto st_case_619 + case 620: + goto st_case_620 + case 621: + goto st_case_621 + case 622: + goto st_case_622 + case 623: + goto st_case_623 + case 624: + goto st_case_624 + case 625: + goto st_case_625 + case 626: + goto st_case_626 + case 627: + goto st_case_627 + case 628: + goto st_case_628 + case 629: + goto st_case_629 + case 630: + goto st_case_630 + case 631: + goto st_case_631 + case 632: + goto st_case_632 + case 633: + goto st_case_633 + case 634: + goto st_case_634 + case 635: + goto st_case_635 + case 636: + goto st_case_636 + case 637: + goto st_case_637 + case 638: + goto st_case_638 + case 639: + goto st_case_639 + case 640: + goto st_case_640 + case 641: + goto st_case_641 + case 642: + goto st_case_642 + case 643: + goto st_case_643 + case 644: + goto st_case_644 + case 645: + goto st_case_645 + case 646: + goto st_case_646 + case 647: + goto st_case_647 + case 648: + goto st_case_648 + case 649: + goto st_case_649 + case 650: + goto st_case_650 + case 651: + goto st_case_651 + case 652: + goto st_case_652 + case 653: + goto st_case_653 + case 654: + goto st_case_654 + case 655: + goto st_case_655 + case 656: + goto st_case_656 + case 657: + goto st_case_657 + case 658: + goto st_case_658 + case 659: + goto st_case_659 + case 660: + goto st_case_660 + case 661: + goto st_case_661 + case 662: + goto st_case_662 + case 663: + goto st_case_663 + case 664: + goto st_case_664 + case 665: + goto st_case_665 + case 666: + goto st_case_666 + case 667: + goto st_case_667 + case 668: + goto st_case_668 + case 669: + goto st_case_669 + case 670: + goto st_case_670 + case 671: + goto st_case_671 + case 672: + goto st_case_672 + case 673: + goto st_case_673 + case 674: + goto st_case_674 + case 675: + goto st_case_675 + case 676: + goto st_case_676 + case 677: + goto st_case_677 + case 678: + goto st_case_678 + case 679: + goto st_case_679 + case 680: + goto st_case_680 + case 681: + goto st_case_681 + case 682: + goto st_case_682 + case 683: + goto st_case_683 + case 684: + goto st_case_684 + case 685: + goto st_case_685 + case 686: + goto st_case_686 + case 687: + goto st_case_687 + case 688: + goto st_case_688 + case 689: + goto st_case_689 + case 690: + goto st_case_690 + case 691: + goto st_case_691 + case 692: + goto st_case_692 + case 693: + goto st_case_693 + case 694: + goto st_case_694 + case 695: + goto st_case_695 + case 696: + goto st_case_696 + case 697: + goto st_case_697 + case 698: + goto st_case_698 + case 699: + goto st_case_699 + case 700: + goto st_case_700 + case 701: + goto st_case_701 + case 702: + goto st_case_702 + case 703: + goto st_case_703 + case 704: + goto st_case_704 + case 705: + goto st_case_705 + case 706: + goto st_case_706 + case 707: + goto st_case_707 + case 708: + goto st_case_708 + case 709: + goto st_case_709 + case 710: + goto st_case_710 + case 711: + goto st_case_711 + case 712: + goto st_case_712 + case 713: + goto st_case_713 + case 714: + goto st_case_714 + case 715: + goto st_case_715 + case 716: + goto st_case_716 + case 717: + goto st_case_717 + case 718: + goto st_case_718 + case 719: + goto st_case_719 + case 720: + goto st_case_720 + case 721: + goto st_case_721 + case 722: + goto st_case_722 + case 723: + goto st_case_723 + case 724: + goto st_case_724 + case 725: + goto st_case_725 + case 726: + goto st_case_726 + case 727: + goto st_case_727 + case 728: + goto st_case_728 + case 729: + goto st_case_729 + case 730: + goto st_case_730 + case 731: + goto st_case_731 + case 732: + goto st_case_732 + case 733: + goto st_case_733 + case 734: + goto st_case_734 + case 735: + goto st_case_735 + case 736: + goto st_case_736 + case 737: + goto st_case_737 + case 738: + goto st_case_738 + case 739: + goto st_case_739 + case 740: + goto st_case_740 + case 741: + goto st_case_741 + case 742: + goto st_case_742 + case 743: + goto st_case_743 + case 744: + goto st_case_744 + case 745: + goto st_case_745 + case 746: + goto st_case_746 + case 747: + goto st_case_747 + case 748: + goto st_case_748 + case 749: + goto st_case_749 + case 750: + goto st_case_750 + case 751: + goto st_case_751 + case 752: + goto st_case_752 + case 753: + goto st_case_753 + case 754: + goto st_case_754 + case 755: + goto st_case_755 + case 756: + goto st_case_756 + case 757: + goto st_case_757 + case 758: + goto st_case_758 + case 759: + goto st_case_759 + case 760: + goto st_case_760 + case 761: + goto st_case_761 + case 762: + goto st_case_762 + case 763: + goto st_case_763 + case 764: + goto st_case_764 + } + goto st_out st_case_1: switch data[p] { case 33: @@ -1693,25 +1687,27 @@ func ParseMsg(data []byte) (msg *Msg, err error) { goto tr0 } goto st0 -tr416: + tr416: //line sip.rl:158 - p-- + p-- - {goto st273 } + { + goto st273 + } - goto st0 + goto st0 //line msg_parse.go:1691 -st_case_0: + st_case_0: st0: cs = 0 goto _out -tr0: + tr0: //line sip.rl:67 - mark = p + mark = p - goto st2 + goto st2 st2: if p++; p == pe { goto _test_eof2 @@ -1753,12 +1749,12 @@ tr0: goto st2 } goto st0 -tr3: + tr3: //line sip.rl:99 - msg.Method = string(data[mark:p]) + msg.Method = string(data[mark:p]) - goto st3 + goto st3 st3: if p++; p == pe { goto _test_eof3 @@ -1769,12 +1765,12 @@ tr3: goto st0 } goto tr5 -tr5: + tr5: //line sip.rl:67 - mark = p + mark = p - goto st4 + goto st4 st4: if p++; p == pe { goto _test_eof4 @@ -1785,13 +1781,15 @@ tr5: goto tr7 } goto st4 -tr7: + tr7: //line sip.rl:111 - msg.Request, err = ParseURI(data[mark:p]) - if err != nil { return nil, err } + msg.Request, err = ParseURI(data[mark:p]) + if err != nil { + return nil, err + } - goto st5 + goto st5 st5: if p++; p == pe { goto _test_eof5 @@ -1838,12 +1836,12 @@ tr7: goto tr12 } goto st0 -tr12: + tr12: //line sip.rl:103 - msg.VersionMajor = msg.VersionMajor * 10 + (data[p] - 0x30) + msg.VersionMajor = msg.VersionMajor*10 + (data[p] - 0x30) - goto st10 + goto st10 st10: if p++; p == pe { goto _test_eof10 @@ -1866,12 +1864,12 @@ tr12: goto tr14 } goto st0 -tr14: + tr14: //line sip.rl:107 - msg.VersionMinor = msg.VersionMinor * 10 + (data[p] - 0x30) + msg.VersionMinor = msg.VersionMinor*10 + (data[p] - 0x30) - goto st12 + goto st12 st12: if p++; p == pe { goto _test_eof12 @@ -1881,7 +1879,7 @@ tr14: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -1892,12 +1890,12 @@ tr14: goto tr14 } goto st0 -tr42: + tr42: //line sip.rl:120 - msg.Phrase = string(buf[0:amt]) + msg.Phrase = string(buf[0:amt]) - goto st13 + goto st13 st13: if p++; p == pe { goto _test_eof13 @@ -1908,10 +1906,12 @@ tr42: goto tr16 } goto st0 -tr16: + tr16: //line sip.rl:244 - {goto st280 } - goto st765 + { + goto st280 + } + goto st765 st765: if p++; p == pe { goto _test_eof765 @@ -1919,12 +1919,12 @@ tr16: st_case_765: //line msg_parse.go:1907 goto st0 -tr2: + tr2: //line sip.rl:67 - mark = p + mark = p - goto st14 + goto st14 st14: if p++; p == pe { goto _test_eof14 @@ -2056,12 +2056,12 @@ tr2: goto tr20 } goto st0 -tr20: + tr20: //line sip.rl:103 - msg.VersionMajor = msg.VersionMajor * 10 + (data[p] - 0x30) + msg.VersionMajor = msg.VersionMajor*10 + (data[p] - 0x30) - goto st18 + goto st18 st18: if p++; p == pe { goto _test_eof18 @@ -2084,12 +2084,12 @@ tr20: goto tr22 } goto st0 -tr22: + tr22: //line sip.rl:107 - msg.VersionMinor = msg.VersionMinor * 10 + (data[p] - 0x30) + msg.VersionMinor = msg.VersionMinor*10 + (data[p] - 0x30) - goto st20 + goto st20 st20: if p++; p == pe { goto _test_eof20 @@ -2112,12 +2112,12 @@ tr22: goto tr24 } goto st0 -tr24: + tr24: //line sip.rl:116 - msg.Status = msg.Status * 10 + (int(data[p]) - 0x30) + msg.Status = msg.Status*10 + (int(data[p]) - 0x30) - goto st22 + goto st22 st22: if p++; p == pe { goto _test_eof22 @@ -2128,12 +2128,12 @@ tr24: goto tr25 } goto st0 -tr25: + tr25: //line sip.rl:116 - msg.Status = msg.Status * 10 + (int(data[p]) - 0x30) + msg.Status = msg.Status*10 + (int(data[p]) - 0x30) - goto st23 + goto st23 st23: if p++; p == pe { goto _test_eof23 @@ -2144,12 +2144,12 @@ tr25: goto tr26 } goto st0 -tr26: + tr26: //line sip.rl:116 - msg.Status = msg.Status * 10 + (int(data[p]) - 0x30) + msg.Status = msg.Status*10 + (int(data[p]) - 0x30) - goto st24 + goto st24 st24: if p++; p == pe { goto _test_eof24 @@ -2218,32 +2218,32 @@ tr26: goto tr30 } goto st0 -tr28: + tr28: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st26 -tr35: + goto st26 + tr35: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st26 -tr44: + goto st26 + tr44: //line sip.rl:93 - hex += unhex(data[p]) - buf[amt] = hex - amt++ + hex += unhex(data[p]) + buf[amt] = hex + amt++ - goto st26 + goto st26 st26: if p++; p == pe { goto _test_eof26 @@ -2253,7 +2253,7 @@ tr44: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -2312,12 +2312,12 @@ tr44: goto tr37 } goto st0 -tr29: + tr29: //line sip.rl:75 - amt = 0 + amt = 0 - goto st27 + goto st27 st27: if p++; p == pe { goto _test_eof27 @@ -2337,12 +2337,12 @@ tr29: goto tr43 } goto st0 -tr43: + tr43: //line sip.rl:89 - hex = unhex(data[p]) * 16 + hex = unhex(data[p]) * 16 - goto st28 + goto st28 st28: if p++; p == pe { goto _test_eof28 @@ -2362,24 +2362,24 @@ tr43: goto tr44 } goto st0 -tr30: + tr30: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st29 -tr37: + goto st29 + tr37: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st29 + goto st29 st29: if p++; p == pe { goto _test_eof29 @@ -2390,24 +2390,24 @@ tr37: goto tr35 } goto st0 -tr31: + tr31: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st30 -tr38: + goto st30 + tr38: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st30 + goto st30 st30: if p++; p == pe { goto _test_eof30 @@ -2418,24 +2418,24 @@ tr38: goto tr37 } goto st0 -tr32: + tr32: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st31 -tr39: + goto st31 + tr39: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st31 + goto st31 st31: if p++; p == pe { goto _test_eof31 @@ -2446,24 +2446,24 @@ tr39: goto tr38 } goto st0 -tr33: + tr33: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st32 -tr40: + goto st32 + tr40: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st32 + goto st32 st32: if p++; p == pe { goto _test_eof32 @@ -2474,24 +2474,24 @@ tr40: goto tr39 } goto st0 -tr34: + tr34: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st33 -tr41: + goto st33 + tr41: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st33 + goto st33 st33: if p++; p == pe { goto _test_eof33 @@ -2540,12 +2540,12 @@ tr41: goto tr45 } goto st0 -tr45: + tr45: //line sip.rl:67 - mark = p + mark = p - goto st35 + goto st35 st35: if p++; p == pe { goto _test_eof35 @@ -2628,7 +2628,7 @@ tr45: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -2675,12 +2675,12 @@ tr45: goto st37 } goto st0 -tr49: + tr49: //line sip.rl:215 - ctype = string(data[mark:p]) + ctype = string(data[mark:p]) - goto st38 + goto st38 st38: if p++; p == pe { goto _test_eof38 @@ -2690,7 +2690,7 @@ tr49: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -2705,12 +2705,12 @@ tr49: goto st45 } goto st0 -tr50: + tr50: //line sip.rl:215 - ctype = string(data[mark:p]) + ctype = string(data[mark:p]) - goto st39 + goto st39 st39: if p++; p == pe { goto _test_eof39 @@ -2720,7 +2720,7 @@ tr50: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -2771,7 +2771,7 @@ tr50: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -2824,7 +2824,7 @@ tr50: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -2847,7 +2847,7 @@ tr50: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -2900,7 +2900,7 @@ tr50: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -2947,12 +2947,12 @@ tr50: goto st43 } goto st0 -tr51: + tr51: //line sip.rl:215 - ctype = string(data[mark:p]) + ctype = string(data[mark:p]) - goto st44 + goto st44 st44: if p++; p == pe { goto _test_eof44 @@ -2963,10 +2963,12 @@ tr51: goto tr65 } goto st0 -tr65: + tr65: //line sip.rl:244 - {goto st280 } - goto st766 + { + goto st280 + } + goto st766 st766: if p++; p == pe { goto _test_eof766 @@ -2974,12 +2976,12 @@ tr65: st_case_766: //line msg_parse.go:2962 goto st0 -tr52: + tr52: //line sip.rl:215 - ctype = string(data[mark:p]) + ctype = string(data[mark:p]) - goto st45 + goto st45 st45: if p++; p == pe { goto _test_eof45 @@ -3024,7 +3026,7 @@ tr52: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -3065,24 +3067,24 @@ tr52: goto tr72 } goto st0 -tr68: + tr68: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st49 -tr77: + goto st49 + tr77: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st49 + goto st49 st49: if p++; p == pe { goto _test_eof49 @@ -3092,7 +3094,7 @@ tr77: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -3133,12 +3135,12 @@ tr77: goto tr81 } goto st0 -tr69: + tr69: //line sip.rl:75 - amt = 0 + amt = 0 - goto st50 + goto st50 st50: if p++; p == pe { goto _test_eof50 @@ -3148,7 +3150,7 @@ tr69: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -3165,12 +3167,12 @@ tr69: goto st45 } goto st0 -tr70: + tr70: //line sip.rl:75 - amt = 0 + amt = 0 - goto st51 + goto st51 st51: if p++; p == pe { goto _test_eof51 @@ -3190,24 +3192,24 @@ tr70: goto tr77 } goto st0 -tr71: + tr71: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st52 -tr80: + goto st52 + tr80: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st52 + goto st52 st52: if p++; p == pe { goto _test_eof52 @@ -3218,24 +3220,24 @@ tr80: goto tr77 } goto st0 -tr72: + tr72: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st53 -tr81: + goto st53 + tr81: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st53 + goto st53 st53: if p++; p == pe { goto _test_eof53 @@ -3246,24 +3248,24 @@ tr81: goto tr80 } goto st0 -tr73: + tr73: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st54 -tr82: + goto st54 + tr82: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st54 + goto st54 st54: if p++; p == pe { goto _test_eof54 @@ -3274,24 +3276,24 @@ tr82: goto tr81 } goto st0 -tr74: + tr74: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st55 -tr83: + goto st55 + tr83: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st55 + goto st55 st55: if p++; p == pe { goto _test_eof55 @@ -3302,24 +3304,24 @@ tr83: goto tr82 } goto st0 -tr75: + tr75: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st56 -tr84: + goto st56 + tr84: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st56 + goto st56 st56: if p++; p == pe { goto _test_eof56 @@ -3330,24 +3332,24 @@ tr84: goto tr83 } goto st0 -tr76: + tr76: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st57 -tr85: + goto st57 + tr85: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st57 + goto st57 st57: if p++; p == pe { goto _test_eof57 @@ -3358,13 +3360,13 @@ tr85: goto tr86 } goto st0 -tr86: + tr86: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st58 + goto st58 st58: if p++; p == pe { goto _test_eof58 @@ -3579,16 +3581,16 @@ tr86: goto tr93 } goto st0 -tr93: + tr93: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:67 - mark = p + mark = p - goto st69 + goto st69 st69: if p++; p == pe { goto _test_eof69 @@ -3598,7 +3600,7 @@ tr93: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -3644,12 +3646,12 @@ tr93: goto st69 } goto st0 -tr94: + tr94: //line sip.rl:163 - name = string(data[mark:p]) + name = string(data[mark:p]) - goto st70 + goto st70 st70: if p++; p == pe { goto _test_eof70 @@ -3659,7 +3661,7 @@ tr94: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -3678,12 +3680,12 @@ tr94: goto st100 } goto st0 -tr96: + tr96: //line sip.rl:163 - name = string(data[mark:p]) + name = string(data[mark:p]) - goto st71 + goto st71 st71: if p++; p == pe { goto _test_eof71 @@ -3693,7 +3695,7 @@ tr96: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -3716,60 +3718,64 @@ tr96: goto tr106 } goto st0 -tr106: + tr106: //line sip.rl:154 - via.Param = &Param{name, string(buf[0:amt]), via.Param} + via.Param = &Param{name, string(buf[0:amt]), via.Param} //line sip.rl:128 - *viap = via - viap = &via.Next - via = nil + *viap = via + viap = &via.Next + via = nil //line sip.rl:124 - via = new(Via) + via = new(Via) //line sip.rl:59 - p-- - + p-- //line sip.rl:246 - {goto st103 } - goto st767 -tr110: + { + goto st103 + } + goto st767 + tr110: //line sip.rl:154 - via.Param = &Param{name, string(buf[0:amt]), via.Param} + via.Param = &Param{name, string(buf[0:amt]), via.Param} //line sip.rl:59 - p-- - + p-- //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:247 - {goto st68 } - goto st767 -tr122: + { + goto st68 + } + goto st767 + tr122: //line sip.rl:154 - via.Param = &Param{name, string(buf[0:amt]), via.Param} + via.Param = &Param{name, string(buf[0:amt]), via.Param} //line sip.rl:128 - *viap = via - viap = &via.Next - via = nil + *viap = via + viap = &via.Next + via = nil //line sip.rl:244 - {goto st280 } - goto st767 + { + goto st280 + } + goto st767 st767: if p++; p == pe { goto _test_eof767 @@ -3810,12 +3816,12 @@ tr122: goto st74 } goto tr106 -tr97: + tr97: //line sip.rl:163 - name = string(data[mark:p]) + name = string(data[mark:p]) - goto st75 + goto st75 st75: if p++; p == pe { goto _test_eof75 @@ -3825,7 +3831,7 @@ tr97: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -3881,12 +3887,12 @@ tr97: goto st78 } goto tr110 -tr98: + tr98: //line sip.rl:163 - name = string(data[mark:p]) + name = string(data[mark:p]) - goto st79 + goto st79 st79: if p++; p == pe { goto _test_eof79 @@ -3896,7 +3902,7 @@ tr98: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -3943,13 +3949,13 @@ tr98: goto tr114 } goto st0 -tr114: + tr114: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st80 + goto st80 st80: if p++; p == pe { goto _test_eof80 @@ -3959,7 +3965,7 @@ tr114: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -4013,7 +4019,7 @@ tr114: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -4067,12 +4073,12 @@ tr114: goto st75 } goto st0 -tr99: + tr99: //line sip.rl:163 - name = string(data[mark:p]) + name = string(data[mark:p]) - goto st85 + goto st85 st85: if p++; p == pe { goto _test_eof85 @@ -4091,7 +4097,7 @@ tr99: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -4132,24 +4138,24 @@ tr99: goto tr127 } goto st0 -tr123: + tr123: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st87 -tr132: + goto st87 + tr132: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st87 + goto st87 st87: if p++; p == pe { goto _test_eof87 @@ -4159,7 +4165,7 @@ tr132: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -4200,12 +4206,12 @@ tr132: goto tr136 } goto st0 -tr124: + tr124: //line sip.rl:75 - amt = 0 + amt = 0 - goto st88 + goto st88 st88: if p++; p == pe { goto _test_eof88 @@ -4215,7 +4221,7 @@ tr124: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -4234,12 +4240,12 @@ tr124: goto st82 } goto st0 -tr125: + tr125: //line sip.rl:75 - amt = 0 + amt = 0 - goto st89 + goto st89 st89: if p++; p == pe { goto _test_eof89 @@ -4259,24 +4265,24 @@ tr125: goto tr132 } goto st0 -tr126: + tr126: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st90 -tr135: + goto st90 + tr135: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st90 + goto st90 st90: if p++; p == pe { goto _test_eof90 @@ -4287,24 +4293,24 @@ tr135: goto tr132 } goto st0 -tr127: + tr127: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st91 -tr136: + goto st91 + tr136: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st91 + goto st91 st91: if p++; p == pe { goto _test_eof91 @@ -4315,24 +4321,24 @@ tr136: goto tr135 } goto st0 -tr128: + tr128: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st92 -tr137: + goto st92 + tr137: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st92 + goto st92 st92: if p++; p == pe { goto _test_eof92 @@ -4343,24 +4349,24 @@ tr137: goto tr136 } goto st0 -tr129: + tr129: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st93 -tr138: + goto st93 + tr138: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st93 + goto st93 st93: if p++; p == pe { goto _test_eof93 @@ -4371,24 +4377,24 @@ tr138: goto tr137 } goto st0 -tr130: + tr130: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st94 -tr139: + goto st94 + tr139: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st94 + goto st94 st94: if p++; p == pe { goto _test_eof94 @@ -4399,24 +4405,24 @@ tr139: goto tr138 } goto st0 -tr131: + tr131: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st95 -tr140: + goto st95 + tr140: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st95 + goto st95 st95: if p++; p == pe { goto _test_eof95 @@ -4427,13 +4433,13 @@ tr140: goto tr141 } goto st0 -tr141: + tr141: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st96 + goto st96 st96: if p++; p == pe { goto _test_eof96 @@ -4514,12 +4520,12 @@ tr141: goto tr114 } goto st0 -tr100: + tr100: //line sip.rl:163 - name = string(data[mark:p]) + name = string(data[mark:p]) - goto st100 + goto st100 st100: if p++; p == pe { goto _test_eof100 @@ -4598,12 +4604,12 @@ tr100: goto tr146 } goto st0 -tr146: + tr146: //line sip.rl:67 - mark = p + mark = p - goto st104 + goto st104 st104: if p++; p == pe { goto _test_eof104 @@ -4613,7 +4619,7 @@ tr146: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -4653,12 +4659,12 @@ tr146: goto st104 } goto st0 -tr147: + tr147: //line sip.rl:134 - via.Protocol = string(data[mark:p]) + via.Protocol = string(data[mark:p]) - goto st105 + goto st105 st105: if p++; p == pe { goto _test_eof105 @@ -4668,7 +4674,7 @@ tr147: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -4683,12 +4689,12 @@ tr147: goto st150 } goto st0 -tr149: + tr149: //line sip.rl:134 - via.Protocol = string(data[mark:p]) + via.Protocol = string(data[mark:p]) - goto st106 + goto st106 st106: if p++; p == pe { goto _test_eof106 @@ -4698,7 +4704,7 @@ tr149: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -4741,12 +4747,12 @@ tr149: goto tr154 } goto st0 -tr154: + tr154: //line sip.rl:67 - mark = p + mark = p - goto st107 + goto st107 st107: if p++; p == pe { goto _test_eof107 @@ -4756,7 +4762,7 @@ tr154: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -4796,12 +4802,12 @@ tr154: goto st107 } goto st0 -tr156: + tr156: //line sip.rl:138 - via.Version = string(data[mark:p]) + via.Version = string(data[mark:p]) - goto st108 + goto st108 st108: if p++; p == pe { goto _test_eof108 @@ -4811,7 +4817,7 @@ tr156: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -4826,12 +4832,12 @@ tr156: goto st144 } goto st0 -tr158: + tr158: //line sip.rl:138 - via.Version = string(data[mark:p]) + via.Version = string(data[mark:p]) - goto st109 + goto st109 st109: if p++; p == pe { goto _test_eof109 @@ -4841,7 +4847,7 @@ tr158: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -4884,12 +4890,12 @@ tr158: goto tr163 } goto st0 -tr163: + tr163: //line sip.rl:67 - mark = p + mark = p - goto st110 + goto st110 st110: if p++; p == pe { goto _test_eof110 @@ -4899,7 +4905,7 @@ tr163: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -4942,12 +4948,12 @@ tr163: goto st110 } goto st0 -tr165: + tr165: //line sip.rl:142 - via.Transport = string(data[mark:p]) + via.Transport = string(data[mark:p]) - goto st111 + goto st111 st111: if p++; p == pe { goto _test_eof111 @@ -4957,7 +4963,7 @@ tr165: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -4989,12 +4995,12 @@ tr165: goto tr169 } goto st0 -tr169: + tr169: //line sip.rl:67 - mark = p + mark = p - goto st112 + goto st112 st112: if p++; p == pe { goto _test_eof112 @@ -5004,7 +5010,7 @@ tr169: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -5042,12 +5048,12 @@ tr169: goto st112 } goto st0 -tr172: + tr172: //line sip.rl:146 - via.Host = string(data[mark:p]) + via.Host = string(data[mark:p]) - goto st113 + goto st113 st113: if p++; p == pe { goto _test_eof113 @@ -5057,7 +5063,7 @@ tr172: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -5076,12 +5082,12 @@ tr172: goto st132 } goto st0 -tr173: + tr173: //line sip.rl:146 - via.Host = string(data[mark:p]) + via.Host = string(data[mark:p]) - goto st114 + goto st114 st114: if p++; p == pe { goto _test_eof114 @@ -5091,7 +5097,7 @@ tr173: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -5114,48 +5120,52 @@ tr173: goto tr184 } goto st0 -tr184: + tr184: //line sip.rl:128 - *viap = via - viap = &via.Next - via = nil + *viap = via + viap = &via.Next + via = nil //line sip.rl:124 - via = new(Via) + via = new(Via) //line sip.rl:59 - p-- - + p-- //line sip.rl:246 - {goto st103 } - goto st768 -tr193: + { + goto st103 + } + goto st768 + tr193: //line sip.rl:59 - p-- - + p-- //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:247 - {goto st68 } - goto st768 -tr199: + { + goto st68 + } + goto st768 + tr199: //line sip.rl:128 - *viap = via - viap = &via.Next - via = nil + *viap = via + viap = &via.Next + via = nil //line sip.rl:244 - {goto st280 } - goto st768 + { + goto st280 + } + goto st768 st768: if p++; p == pe { goto _test_eof768 @@ -5196,12 +5206,12 @@ tr199: goto st117 } goto tr184 -tr175: + tr175: //line sip.rl:146 - via.Host = string(data[mark:p]) + via.Host = string(data[mark:p]) - goto st118 + goto st118 st118: if p++; p == pe { goto _test_eof118 @@ -5211,7 +5221,7 @@ tr175: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -5227,12 +5237,12 @@ tr175: goto tr188 } goto st0 -tr188: + tr188: //line sip.rl:150 - via.Port = via.Port * 10 + (uint16(data[p]) - 0x30) + via.Port = via.Port*10 + (uint16(data[p]) - 0x30) - goto st119 + goto st119 st119: if p++; p == pe { goto _test_eof119 @@ -5242,7 +5252,7 @@ tr188: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -5272,7 +5282,7 @@ tr188: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -5289,12 +5299,12 @@ tr188: goto st125 } goto st0 -tr176: + tr176: //line sip.rl:146 - via.Host = string(data[mark:p]) + via.Host = string(data[mark:p]) - goto st121 + goto st121 st121: if p++; p == pe { goto _test_eof121 @@ -5304,7 +5314,7 @@ tr176: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -5397,12 +5407,12 @@ tr176: goto st121 } goto st0 -tr177: + tr177: //line sip.rl:146 - via.Host = string(data[mark:p]) + via.Host = string(data[mark:p]) - goto st128 + goto st128 st128: if p++; p == pe { goto _test_eof128 @@ -5449,12 +5459,12 @@ tr177: goto tr188 } goto st0 -tr178: + tr178: //line sip.rl:146 - via.Host = string(data[mark:p]) + via.Host = string(data[mark:p]) - goto st132 + goto st132 st132: if p++; p == pe { goto _test_eof132 @@ -5516,12 +5526,12 @@ tr178: goto tr204 } goto st0 -tr204: + tr204: //line sip.rl:67 - mark = p + mark = p - goto st136 + goto st136 st136: if p++; p == pe { goto _test_eof136 @@ -5547,12 +5557,12 @@ tr204: goto st136 } goto st0 -tr206: + tr206: //line sip.rl:146 - via.Host = string(data[mark:p]) + via.Host = string(data[mark:p]) - goto st137 + goto st137 st137: if p++; p == pe { goto _test_eof137 @@ -5562,7 +5572,7 @@ tr206: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -5583,12 +5593,12 @@ tr206: goto st132 } goto st0 -tr167: + tr167: //line sip.rl:142 - via.Transport = string(data[mark:p]) + via.Transport = string(data[mark:p]) - goto st138 + goto st138 st138: if p++; p == pe { goto _test_eof138 @@ -5705,12 +5715,12 @@ tr167: goto tr163 } goto st0 -tr159: + tr159: //line sip.rl:138 - via.Version = string(data[mark:p]) + via.Version = string(data[mark:p]) - goto st144 + goto st144 st144: if p++; p == pe { goto _test_eof144 @@ -5810,12 +5820,12 @@ tr159: goto tr154 } goto st0 -tr150: + tr150: //line sip.rl:134 - via.Protocol = string(data[mark:p]) + via.Protocol = string(data[mark:p]) - goto st150 + goto st150 st150: if p++; p == pe { goto _test_eof150 @@ -5890,16 +5900,16 @@ tr150: goto tr217 } goto st0 -tr217: + tr217: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:67 - mark = p + mark = p - goto st154 + goto st154 st154: if p++; p == pe { goto _test_eof154 @@ -5909,7 +5919,7 @@ tr217: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -5955,12 +5965,12 @@ tr217: goto st154 } goto st0 -tr218: + tr218: //line sip.rl:163 - name = string(data[mark:p]) + name = string(data[mark:p]) - goto st155 + goto st155 st155: if p++; p == pe { goto _test_eof155 @@ -5970,7 +5980,7 @@ tr218: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -5989,12 +5999,12 @@ tr218: goto st185 } goto st0 -tr220: + tr220: //line sip.rl:163 - name = string(data[mark:p]) + name = string(data[mark:p]) - goto st156 + goto st156 st156: if p++; p == pe { goto _test_eof156 @@ -6004,7 +6014,7 @@ tr220: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -6027,52 +6037,56 @@ tr220: goto tr230 } goto st0 -tr230: + tr230: //line sip.rl:197 - addr.Param = &Param{name, string(buf[0:amt]), addr.Param} + addr.Param = &Param{name, string(buf[0:amt]), addr.Param} //line sip.rl:201 - *addrp = addr - addrp = &addr.Next - addr = nil + *addrp = addr + addrp = &addr.Next + addr = nil //line sip.rl:59 - p-- - + p-- //line sip.rl:239 - {goto st256 } - goto st769 -tr234: + { + goto st256 + } + goto st769 + tr234: //line sip.rl:197 - addr.Param = &Param{name, string(buf[0:amt]), addr.Param} + addr.Param = &Param{name, string(buf[0:amt]), addr.Param} //line sip.rl:59 - p-- - + p-- //line sip.rl:241 - {goto st153 } - goto st769 -tr246: + { + goto st153 + } + goto st769 + tr246: //line sip.rl:197 - addr.Param = &Param{name, string(buf[0:amt]), addr.Param} + addr.Param = &Param{name, string(buf[0:amt]), addr.Param} //line sip.rl:201 - *addrp = addr - addrp = &addr.Next - addr = nil + *addrp = addr + addrp = &addr.Next + addr = nil //line sip.rl:244 - {goto st280 } - goto st769 + { + goto st280 + } + goto st769 st769: if p++; p == pe { goto _test_eof769 @@ -6113,12 +6127,12 @@ tr246: goto st159 } goto tr230 -tr221: + tr221: //line sip.rl:163 - name = string(data[mark:p]) + name = string(data[mark:p]) - goto st160 + goto st160 st160: if p++; p == pe { goto _test_eof160 @@ -6128,7 +6142,7 @@ tr221: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -6184,12 +6198,12 @@ tr221: goto st163 } goto tr234 -tr222: + tr222: //line sip.rl:163 - name = string(data[mark:p]) + name = string(data[mark:p]) - goto st164 + goto st164 st164: if p++; p == pe { goto _test_eof164 @@ -6199,7 +6213,7 @@ tr222: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -6246,13 +6260,13 @@ tr222: goto tr238 } goto st0 -tr238: + tr238: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st165 + goto st165 st165: if p++; p == pe { goto _test_eof165 @@ -6262,7 +6276,7 @@ tr238: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -6316,7 +6330,7 @@ tr238: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -6370,12 +6384,12 @@ tr238: goto st160 } goto st0 -tr223: + tr223: //line sip.rl:163 - name = string(data[mark:p]) + name = string(data[mark:p]) - goto st170 + goto st170 st170: if p++; p == pe { goto _test_eof170 @@ -6394,7 +6408,7 @@ tr223: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -6435,24 +6449,24 @@ tr223: goto tr251 } goto st0 -tr247: + tr247: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st172 -tr256: + goto st172 + tr256: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st172 + goto st172 st172: if p++; p == pe { goto _test_eof172 @@ -6462,7 +6476,7 @@ tr256: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -6503,12 +6517,12 @@ tr256: goto tr260 } goto st0 -tr248: + tr248: //line sip.rl:75 - amt = 0 + amt = 0 - goto st173 + goto st173 st173: if p++; p == pe { goto _test_eof173 @@ -6518,7 +6532,7 @@ tr248: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -6537,12 +6551,12 @@ tr248: goto st167 } goto st0 -tr249: + tr249: //line sip.rl:75 - amt = 0 + amt = 0 - goto st174 + goto st174 st174: if p++; p == pe { goto _test_eof174 @@ -6562,24 +6576,24 @@ tr249: goto tr256 } goto st0 -tr250: + tr250: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st175 -tr259: + goto st175 + tr259: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st175 + goto st175 st175: if p++; p == pe { goto _test_eof175 @@ -6590,24 +6604,24 @@ tr259: goto tr256 } goto st0 -tr251: + tr251: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st176 -tr260: + goto st176 + tr260: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st176 + goto st176 st176: if p++; p == pe { goto _test_eof176 @@ -6618,24 +6632,24 @@ tr260: goto tr259 } goto st0 -tr252: + tr252: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st177 -tr261: + goto st177 + tr261: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st177 + goto st177 st177: if p++; p == pe { goto _test_eof177 @@ -6646,24 +6660,24 @@ tr261: goto tr260 } goto st0 -tr253: + tr253: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st178 -tr262: + goto st178 + tr262: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st178 + goto st178 st178: if p++; p == pe { goto _test_eof178 @@ -6674,24 +6688,24 @@ tr262: goto tr261 } goto st0 -tr254: + tr254: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st179 -tr263: + goto st179 + tr263: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st179 + goto st179 st179: if p++; p == pe { goto _test_eof179 @@ -6702,24 +6716,24 @@ tr263: goto tr262 } goto st0 -tr255: + tr255: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st180 -tr264: + goto st180 + tr264: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st180 + goto st180 st180: if p++; p == pe { goto _test_eof180 @@ -6730,13 +6744,13 @@ tr264: goto tr265 } goto st0 -tr265: + tr265: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st181 + goto st181 st181: if p++; p == pe { goto _test_eof181 @@ -6817,12 +6831,12 @@ tr265: goto tr238 } goto st0 -tr224: + tr224: //line sip.rl:163 - name = string(data[mark:p]) + name = string(data[mark:p]) - goto st185 + goto st185 st185: if p++; p == pe { goto _test_eof185 @@ -6871,7 +6885,7 @@ tr224: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -6918,12 +6932,12 @@ tr224: goto tr271 } goto st0 -tr329: + tr329: //line sip.rl:180 - addr.Display = string(buf[0:amt]) + addr.Display = string(buf[0:amt]) - goto st189 + goto st189 st189: if p++; p == pe { goto _test_eof189 @@ -6933,7 +6947,7 @@ tr329: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -6948,22 +6962,22 @@ tr329: goto st210 } goto st0 -tr305: + tr305: //line sip.rl:184 -{ - end := p - for end > mark && whitespacec(data[end - 1]) { - end-- - } - addr.Display = string(data[mark:end]) -} - goto st190 -tr330: + { + end := p + for end > mark && whitespacec(data[end-1]) { + end-- + } + addr.Display = string(data[mark:end]) + } + goto st190 + tr330: //line sip.rl:180 - addr.Display = string(buf[0:amt]) + addr.Display = string(buf[0:amt]) - goto st190 + goto st190 st190: if p++; p == pe { goto _test_eof190 @@ -6979,12 +6993,12 @@ tr330: goto tr275 } goto st0 -tr275: + tr275: //line sip.rl:67 - mark = p + mark = p - goto st191 + goto st191 st191: if p++; p == pe { goto _test_eof191 @@ -7075,13 +7089,15 @@ tr275: goto st193 } goto st0 -tr279: + tr279: //line sip.rl:192 - addr.Uri, err = ParseURI(data[mark:p]) - if err != nil { return nil, err } + addr.Uri, err = ParseURI(data[mark:p]) + if err != nil { + return nil, err + } - goto st194 + goto st194 st194: if p++; p == pe { goto _test_eof194 @@ -7091,7 +7107,7 @@ tr279: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -7118,7 +7134,7 @@ tr279: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -7141,40 +7157,44 @@ tr279: goto tr285 } goto st0 -tr285: + tr285: //line sip.rl:201 - *addrp = addr - addrp = &addr.Next - addr = nil + *addrp = addr + addrp = &addr.Next + addr = nil //line sip.rl:59 - p-- - + p-- //line sip.rl:239 - {goto st256 } - goto st770 -tr289: + { + goto st256 + } + goto st770 + tr289: //line sip.rl:59 - p-- - + p-- //line sip.rl:241 - {goto st153 } - goto st770 -tr293: + { + goto st153 + } + goto st770 + tr293: //line sip.rl:201 - *addrp = addr - addrp = &addr.Next - addr = nil + *addrp = addr + addrp = &addr.Next + addr = nil //line sip.rl:244 - {goto st280 } - goto st770 + { + goto st280 + } + goto st770 st770: if p++; p == pe { goto _test_eof770 @@ -7223,7 +7243,7 @@ tr293: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -7317,7 +7337,7 @@ tr293: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -7373,22 +7393,22 @@ tr293: goto st199 } goto st0 -tr310: + tr310: //line sip.rl:184 -{ - end := p - for end > mark && whitespacec(data[end - 1]) { - end-- - } - addr.Display = string(data[mark:end]) -} - goto st210 -tr331: + { + end := p + for end > mark && whitespacec(data[end-1]) { + end-- + } + addr.Display = string(data[mark:end]) + } + goto st210 + tr331: //line sip.rl:180 - addr.Display = string(buf[0:amt]) + addr.Display = string(buf[0:amt]) - goto st210 + goto st210 st210: if p++; p == pe { goto _test_eof210 @@ -7425,12 +7445,12 @@ tr331: goto st190 } goto st0 -tr271: + tr271: //line sip.rl:67 - mark = p + mark = p - goto st213 + goto st213 st213: if p++; p == pe { goto _test_eof213 @@ -7440,7 +7460,7 @@ tr271: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -7483,16 +7503,16 @@ tr271: goto st213 } goto st0 -tr304: + tr304: //line sip.rl:184 -{ - end := p - for end > mark && whitespacec(data[end - 1]) { - end-- - } - addr.Display = string(data[mark:end]) -} - goto st214 + { + end := p + for end > mark && whitespacec(data[end-1]) { + end-- + } + addr.Display = string(data[mark:end]) + } + goto st214 st214: if p++; p == pe { goto _test_eof214 @@ -7502,7 +7522,7 @@ tr304: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -7547,16 +7567,16 @@ tr304: goto st213 } goto st0 -tr306: + tr306: //line sip.rl:184 -{ - end := p - for end > mark && whitespacec(data[end - 1]) { - end-- - } - addr.Display = string(data[mark:end]) -} - goto st215 + { + end := p + for end > mark && whitespacec(data[end-1]) { + end-- + } + addr.Display = string(data[mark:end]) + } + goto st215 st215: if p++; p == pe { goto _test_eof215 @@ -7579,16 +7599,16 @@ tr306: goto st217 } goto st0 -tr309: + tr309: //line sip.rl:184 -{ - end := p - for end > mark && whitespacec(data[end - 1]) { - end-- - } - addr.Display = string(data[mark:end]) -} - goto st217 + { + end := p + for end > mark && whitespacec(data[end-1]) { + end-- + } + addr.Display = string(data[mark:end]) + } + goto st217 st217: if p++; p == pe { goto _test_eof217 @@ -7598,7 +7618,7 @@ tr309: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -7643,12 +7663,12 @@ tr309: goto st213 } goto st0 -tr272: + tr272: //line sip.rl:75 - amt = 0 + amt = 0 - goto st218 + goto st218 st218: if p++; p == pe { goto _test_eof218 @@ -7658,7 +7678,7 @@ tr272: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -7699,24 +7719,24 @@ tr272: goto tr315 } goto st0 -tr311: + tr311: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st219 -tr320: + goto st219 + tr320: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st219 + goto st219 st219: if p++; p == pe { goto _test_eof219 @@ -7726,7 +7746,7 @@ tr320: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -7767,12 +7787,12 @@ tr320: goto tr324 } goto st0 -tr312: + tr312: //line sip.rl:75 - amt = 0 + amt = 0 - goto st220 + goto st220 st220: if p++; p == pe { goto _test_eof220 @@ -7782,7 +7802,7 @@ tr312: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -7797,12 +7817,12 @@ tr312: goto tr331 } goto st0 -tr313: + tr313: //line sip.rl:75 - amt = 0 + amt = 0 - goto st221 + goto st221 st221: if p++; p == pe { goto _test_eof221 @@ -7822,24 +7842,24 @@ tr313: goto tr320 } goto st0 -tr314: + tr314: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st222 -tr323: + goto st222 + tr323: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st222 + goto st222 st222: if p++; p == pe { goto _test_eof222 @@ -7850,24 +7870,24 @@ tr323: goto tr320 } goto st0 -tr315: + tr315: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st223 -tr324: + goto st223 + tr324: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st223 + goto st223 st223: if p++; p == pe { goto _test_eof223 @@ -7878,24 +7898,24 @@ tr324: goto tr323 } goto st0 -tr316: + tr316: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st224 -tr325: + goto st224 + tr325: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st224 + goto st224 st224: if p++; p == pe { goto _test_eof224 @@ -7906,24 +7926,24 @@ tr325: goto tr324 } goto st0 -tr317: + tr317: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st225 -tr326: + goto st225 + tr326: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st225 + goto st225 st225: if p++; p == pe { goto _test_eof225 @@ -7934,24 +7954,24 @@ tr326: goto tr325 } goto st0 -tr318: + tr318: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st226 -tr327: + goto st226 + tr327: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st226 + goto st226 st226: if p++; p == pe { goto _test_eof226 @@ -7962,24 +7982,24 @@ tr327: goto tr326 } goto st0 -tr319: + tr319: //line sip.rl:75 - amt = 0 + amt = 0 //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st227 -tr328: + goto st227 + tr328: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st227 + goto st227 st227: if p++; p == pe { goto _test_eof227 @@ -7990,13 +8010,13 @@ tr328: goto tr332 } goto st0 -tr332: + tr332: //line sip.rl:79 - buf[amt] = data[p] - amt++ + buf[amt] = data[p] + amt++ - goto st228 + goto st228 st228: if p++; p == pe { goto _test_eof228 @@ -8091,7 +8111,7 @@ tr332: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -8132,13 +8152,15 @@ tr332: goto st232 } goto st0 -tr336: + tr336: //line sip.rl:192 - addr.Uri, err = ParseURI(data[mark:p]) - if err != nil { return nil, err } + addr.Uri, err = ParseURI(data[mark:p]) + if err != nil { + return nil, err + } - goto st233 + goto st233 st233: if p++; p == pe { goto _test_eof233 @@ -8148,7 +8170,7 @@ tr336: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -8173,7 +8195,7 @@ tr336: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -8196,30 +8218,32 @@ tr336: goto tr345 } goto st0 -tr345: + tr345: //line sip.rl:201 - *addrp = addr - addrp = &addr.Next - addr = nil + *addrp = addr + addrp = &addr.Next + addr = nil //line sip.rl:59 - p-- - + p-- //line sip.rl:239 - {goto st256 } - goto st771 -tr349: + { + goto st256 + } + goto st771 + tr349: //line sip.rl:59 - p-- - + p-- //line sip.rl:241 - {goto st153 } - goto st771 + { + goto st153 + } + goto st771 st771: if p++; p == pe { goto _test_eof771 @@ -8268,7 +8292,7 @@ tr349: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -8324,13 +8348,15 @@ tr349: goto st241 } goto tr349 -tr340: + tr340: //line sip.rl:192 - addr.Uri, err = ParseURI(data[mark:p]) - if err != nil { return nil, err } + addr.Uri, err = ParseURI(data[mark:p]) + if err != nil { + return nil, err + } - goto st242 + goto st242 st242: if p++; p == pe { goto _test_eof242 @@ -8369,13 +8395,15 @@ tr340: goto st238 } goto st0 -tr337: + tr337: //line sip.rl:192 - addr.Uri, err = ParseURI(data[mark:p]) - if err != nil { return nil, err } + addr.Uri, err = ParseURI(data[mark:p]) + if err != nil { + return nil, err + } - goto st245 + goto st245 st245: if p++; p == pe { goto _test_eof245 @@ -8385,7 +8413,7 @@ tr337: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -8435,13 +8463,15 @@ tr337: goto tr345 } goto st0 -tr355: + tr355: //line sip.rl:192 - addr.Uri, err = ParseURI(data[mark:p]) - if err != nil { return nil, err } + addr.Uri, err = ParseURI(data[mark:p]) + if err != nil { + return nil, err + } - goto st246 + goto st246 st246: if p++; p == pe { goto _test_eof246 @@ -8451,7 +8481,7 @@ tr355: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -8478,21 +8508,22 @@ tr355: goto tr345 } goto st0 -tr361: + tr361: //line sip.rl:201 - *addrp = addr - addrp = &addr.Next - addr = nil + *addrp = addr + addrp = &addr.Next + addr = nil //line sip.rl:59 - p-- - + p-- //line sip.rl:239 - {goto st256 } - goto st772 + { + goto st256 + } + goto st772 st772: if p++; p == pe { goto _test_eof772 @@ -8502,7 +8533,7 @@ tr361: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -8525,13 +8556,15 @@ tr361: goto tr349 } goto st0 -tr359: + tr359: //line sip.rl:192 - addr.Uri, err = ParseURI(data[mark:p]) - if err != nil { return nil, err } + addr.Uri, err = ParseURI(data[mark:p]) + if err != nil { + return nil, err + } - goto st247 + goto st247 st247: if p++; p == pe { goto _test_eof247 @@ -8570,30 +8603,32 @@ tr359: goto tr361 } goto tr345 -tr356: + tr356: //line sip.rl:201 - *addrp = addr - addrp = &addr.Next - addr = nil + *addrp = addr + addrp = &addr.Next + addr = nil //line sip.rl:59 - p-- - + p-- //line sip.rl:239 - {goto st256 } - goto st773 -tr366: + { + goto st256 + } + goto st773 + tr366: //line sip.rl:59 - p-- - + p-- //line sip.rl:241 - {goto st153 } - goto st773 + { + goto st153 + } + goto st773 st773: if p++; p == pe { goto _test_eof773 @@ -8603,7 +8638,7 @@ tr366: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -8644,13 +8679,15 @@ tr366: goto st232 } goto st0 -tr338: + tr338: //line sip.rl:192 - addr.Uri, err = ParseURI(data[mark:p]) - if err != nil { return nil, err } + addr.Uri, err = ParseURI(data[mark:p]) + if err != nil { + return nil, err + } - goto st250 + goto st250 st250: if p++; p == pe { goto _test_eof250 @@ -8660,7 +8697,7 @@ tr338: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -8710,13 +8747,15 @@ tr338: goto tr349 } goto st0 -tr365: + tr365: //line sip.rl:192 - addr.Uri, err = ParseURI(data[mark:p]) - if err != nil { return nil, err } + addr.Uri, err = ParseURI(data[mark:p]) + if err != nil { + return nil, err + } - goto st251 + goto st251 st251: if p++; p == pe { goto _test_eof251 @@ -8726,7 +8765,7 @@ tr365: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -8753,15 +8792,16 @@ tr365: goto tr349 } goto st0 -tr371: + tr371: //line sip.rl:59 - p-- - + p-- //line sip.rl:241 - {goto st153 } - goto st774 + { + goto st153 + } + goto st774 st774: if p++; p == pe { goto _test_eof774 @@ -8771,7 +8811,7 @@ tr371: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -8794,13 +8834,15 @@ tr371: goto tr345 } goto st0 -tr369: + tr369: //line sip.rl:192 - addr.Uri, err = ParseURI(data[mark:p]) - if err != nil { return nil, err } + addr.Uri, err = ParseURI(data[mark:p]) + if err != nil { + return nil, err + } - goto st252 + goto st252 st252: if p++; p == pe { goto _test_eof252 @@ -8839,20 +8881,23 @@ tr369: goto st238 } goto tr349 -tr367: + tr367: //line sip.rl:192 - addr.Uri, err = ParseURI(data[mark:p]) - if err != nil { return nil, err } + addr.Uri, err = ParseURI(data[mark:p]) + if err != nil { + return nil, err + } //line sip.rl:59 - p-- - + p-- //line sip.rl:241 - {goto st153 } - goto st775 + { + goto st153 + } + goto st775 st775: if p++; p == pe { goto _test_eof775 @@ -8862,7 +8907,7 @@ tr367: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -8912,26 +8957,29 @@ tr367: goto tr345 } goto st0 -tr357: + tr357: //line sip.rl:192 - addr.Uri, err = ParseURI(data[mark:p]) - if err != nil { return nil, err } + addr.Uri, err = ParseURI(data[mark:p]) + if err != nil { + return nil, err + } //line sip.rl:201 - *addrp = addr - addrp = &addr.Next - addr = nil + *addrp = addr + addrp = &addr.Next + addr = nil //line sip.rl:59 - p-- - + p-- //line sip.rl:239 - {goto st256 } - goto st776 + { + goto st256 + } + goto st776 st776: if p++; p == pe { goto _test_eof776 @@ -8941,7 +8989,7 @@ tr357: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -8991,40 +9039,46 @@ tr357: goto tr349 } goto st0 -tr358: + tr358: //line sip.rl:192 - addr.Uri, err = ParseURI(data[mark:p]) - if err != nil { return nil, err } + addr.Uri, err = ParseURI(data[mark:p]) + if err != nil { + return nil, err + } //line sip.rl:201 - *addrp = addr - addrp = &addr.Next - addr = nil + *addrp = addr + addrp = &addr.Next + addr = nil //line sip.rl:59 - p-- - + p-- //line sip.rl:239 - {goto st256 } - goto st777 -tr368: + { + goto st256 + } + goto st777 + tr368: //line sip.rl:192 - addr.Uri, err = ParseURI(data[mark:p]) - if err != nil { return nil, err } + addr.Uri, err = ParseURI(data[mark:p]) + if err != nil { + return nil, err + } //line sip.rl:59 - p-- - + p-- //line sip.rl:241 - {goto st153 } - goto st777 + { + goto st153 + } + goto st777 st777: if p++; p == pe { goto _test_eof777 @@ -9035,10 +9089,12 @@ tr368: goto tr375 } goto st0 -tr375: + tr375: //line sip.rl:244 - {goto st280 } - goto st778 + { + goto st280 + } + goto st778 st778: if p++; p == pe { goto _test_eof778 @@ -9046,13 +9102,15 @@ tr375: st_case_778: //line msg_parse.go:9034 goto st0 -tr339: + tr339: //line sip.rl:192 - addr.Uri, err = ParseURI(data[mark:p]) - if err != nil { return nil, err } + addr.Uri, err = ParseURI(data[mark:p]) + if err != nil { + return nil, err + } - goto st255 + goto st255 st255: if p++; p == pe { goto _test_eof255 @@ -9109,12 +9167,12 @@ tr339: goto tr376 } goto st0 -tr376: + tr376: //line sip.rl:67 - mark = p + mark = p - goto st257 + goto st257 st257: if p++; p == pe { goto _test_eof257 @@ -9124,7 +9182,7 @@ tr376: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -9175,7 +9233,7 @@ tr376: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -9220,45 +9278,48 @@ tr376: goto st257 } goto st0 -tr377: + tr377: //line sip.rl:176 - addr = new(Addr) + addr = new(Addr) //line sip.rl:59 - p-- - + p-- //line sip.rl:240 - {goto st188 } - goto st779 -tr382: + { + goto st188 + } + goto st779 + tr382: //line sip.rl:176 - addr = new(Addr) + addr = new(Addr) //line sip.rl:71 - p = ( mark) - 1 - + p = (mark) - 1 //line sip.rl:240 - {goto st188 } - goto st779 -tr386: + { + goto st188 + } + goto st779 + tr386: //line sip.rl:176 - addr = new(Addr) + addr = new(Addr) //line sip.rl:71 - p = ( mark) - 1 - + p = (mark) - 1 //line sip.rl:242 - {goto st229 } - goto st779 + { + goto st229 + } + goto st779 st779: if p++; p == pe { goto _test_eof779 @@ -9331,12 +9392,12 @@ tr386: goto st257 } goto st0 -tr378: + tr378: //line sip.rl:67 - mark = p + mark = p - goto st262 + goto st262 st262: if p++; p == pe { goto _test_eof262 @@ -9346,7 +9407,7 @@ tr378: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -9403,7 +9464,7 @@ tr378: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -9442,12 +9503,12 @@ tr378: goto tr389 } goto st0 -tr387: + tr387: //line sip.rl:67 - mark = p + mark = p - goto st264 + goto st264 st264: if p++; p == pe { goto _test_eof264 @@ -9457,7 +9518,7 @@ tr387: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -9496,12 +9557,12 @@ tr387: goto st266 } goto st0 -tr388: + tr388: //line sip.rl:67 - mark = p + mark = p - goto st265 + goto st265 st265: if p++; p == pe { goto _test_eof265 @@ -9512,12 +9573,12 @@ tr388: goto st264 } goto st0 -tr389: + tr389: //line sip.rl:67 - mark = p + mark = p - goto st266 + goto st266 st266: if p++; p == pe { goto _test_eof266 @@ -9528,12 +9589,12 @@ tr389: goto st265 } goto st0 -tr390: + tr390: //line sip.rl:67 - mark = p + mark = p - goto st267 + goto st267 st267: if p++; p == pe { goto _test_eof267 @@ -9544,12 +9605,12 @@ tr390: goto st266 } goto st0 -tr391: + tr391: //line sip.rl:67 - mark = p + mark = p - goto st268 + goto st268 st268: if p++; p == pe { goto _test_eof268 @@ -9560,12 +9621,12 @@ tr391: goto st267 } goto st0 -tr392: + tr392: //line sip.rl:67 - mark = p + mark = p - goto st269 + goto st269 st269: if p++; p == pe { goto _test_eof269 @@ -9576,12 +9637,12 @@ tr392: goto st268 } goto st0 -tr393: + tr393: //line sip.rl:67 - mark = p + mark = p - goto st270 + goto st270 st270: if p++; p == pe { goto _test_eof270 @@ -9592,19 +9653,21 @@ tr393: goto tr403 } goto st0 -tr403: + tr403: //line sip.rl:167 -{ - b := data[mark:p - 1] - if value != nil { - *value = string(b) - } else { - msg.XHeader = &XHeader{name, b, msg.XHeader} - } -} + { + b := data[mark : p-1] + if value != nil { + *value = string(b) + } else { + msg.XHeader = &XHeader{name, b, msg.XHeader} + } + } //line sip.rl:244 - {goto st280 } - goto st780 + { + goto st280 + } + goto st780 st780: if p++; p == pe { goto _test_eof780 @@ -9612,12 +9675,12 @@ tr403: st_case_780: //line msg_parse.go:9600 goto st0 -tr394: + tr394: //line sip.rl:67 - mark = p + mark = p - goto st271 + goto st271 st271: if p++; p == pe { goto _test_eof271 @@ -9722,12 +9785,12 @@ tr394: goto st274 } goto st0 -tr406: + tr406: //line sip.rl:163 - name = string(data[mark:p]) + name = string(data[mark:p]) - goto st275 + goto st275 st275: if p++; p == pe { goto _test_eof275 @@ -9743,12 +9806,12 @@ tr406: goto st276 } goto st0 -tr407: + tr407: //line sip.rl:163 - name = string(data[mark:p]) + name = string(data[mark:p]) - goto st276 + goto st276 st276: if p++; p == pe { goto _test_eof276 @@ -9758,7 +9821,7 @@ tr407: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -9781,17 +9844,18 @@ tr407: goto tr410 } goto st0 -tr410: + tr410: //line sip.rl:519 -value=nil + value = nil //line sip.rl:59 - p-- - + p-- //line sip.rl:245 - {goto st263 } - goto st781 + { + goto st263 + } + goto st781 st781: if p++; p == pe { goto _test_eof781 @@ -9840,7 +9904,7 @@ value=nil _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -9879,17 +9943,16 @@ value=nil goto tr414 } goto st0 -tr414: + tr414: //line sip.rl:67 - mark = p + mark = p //line sip.rl:59 - p-- - + p-- - goto st281 + goto st281 st281: if p++; p == pe { goto _test_eof281 @@ -9997,156 +10060,156 @@ tr414: goto st336 } goto tr416 -tr435: + tr435: //line sip.rl:438 -value=&msg.AcceptContact - goto st283 -tr450: + value = &msg.AcceptContact + goto st283 + tr450: //line sip.rl:437 -value=&msg.Accept - goto st283 -tr469: + value = &msg.Accept + goto st283 + tr469: //line sip.rl:439 -value=&msg.AcceptEncoding - goto st283 -tr478: + value = &msg.AcceptEncoding + goto st283 + tr478: //line sip.rl:440 -value=&msg.AcceptLanguage - goto st283 -tr489: + value = &msg.AcceptLanguage + goto st283 + tr489: //line sip.rl:443 -value=&msg.AlertInfo - goto st283 -tr493: + value = &msg.AlertInfo + goto st283 + tr493: //line sip.rl:441 -value=&msg.Allow - goto st283 -tr502: + value = &msg.Allow + goto st283 + tr502: //line sip.rl:442 -value=&msg.AllowEvents - goto st283 -tr522: + value = &msg.AllowEvents + goto st283 + tr522: //line sip.rl:444 -value=&msg.AuthenticationInfo - goto st283 -tr532: + value = &msg.AuthenticationInfo + goto st283 + tr532: //line sip.rl:445 -value=&msg.Authorization - goto st283 -tr534: + value = &msg.Authorization + goto st283 + tr534: //line sip.rl:462 -value=&msg.ReferredBy - goto st283 -tr564: + value = &msg.ReferredBy + goto st283 + tr564: //line sip.rl:449 -value=&msg.CallInfo - goto st283 -tr597: + value = &msg.CallInfo + goto st283 + tr597: //line sip.rl:446 -value=&msg.ContentDisposition - goto st283 -tr606: + value = &msg.ContentDisposition + goto st283 + tr606: //line sip.rl:448 -value=&msg.ContentEncoding - goto st283 -tr616: + value = &msg.ContentEncoding + goto st283 + tr616: //line sip.rl:447 -value=&msg.ContentLanguage - goto st283 -tr651: + value = &msg.ContentLanguage + goto st283 + tr651: //line sip.rl:450 -value=&msg.Date - goto st283 -tr664: + value = &msg.Date + goto st283 + tr664: //line sip.rl:451 -value=&msg.ErrorInfo - goto st283 -tr669: + value = &msg.ErrorInfo + goto st283 + tr669: //line sip.rl:452 -value=&msg.Event - goto st283 -tr698: + value = &msg.Event + goto st283 + tr698: //line sip.rl:453 -value=&msg.InReplyTo - goto st283 -tr700: + value = &msg.InReplyTo + goto st283 + tr700: //line sip.rl:467 -value=&msg.Supported - goto st283 -tr739: + value = &msg.Supported + goto st283 + tr739: //line sip.rl:455 -value=&msg.MIMEVersion - goto st283 -tr767: + value = &msg.MIMEVersion + goto st283 + tr767: //line sip.rl:456 -value=&msg.Organization - goto st283 -tr797: + value = &msg.Organization + goto st283 + tr797: //line sip.rl:457 -value=&msg.Priority - goto st283 -tr816: + value = &msg.Priority + goto st283 + tr816: //line sip.rl:458 -value=&msg.ProxyAuthenticate - goto st283 -tr826: + value = &msg.ProxyAuthenticate + goto st283 + tr826: //line sip.rl:459 -value=&msg.ProxyAuthorization - goto st283 -tr834: + value = &msg.ProxyAuthorization + goto st283 + tr834: //line sip.rl:460 -value=&msg.ProxyRequire - goto st283 -tr836: + value = &msg.ProxyRequire + goto st283 + tr836: //line sip.rl:461 -value=&msg.ReferTo - goto st283 -tr886: + value = &msg.ReferTo + goto st283 + tr886: //line sip.rl:454 -value=&msg.ReplyTo - goto st283 -tr892: + value = &msg.ReplyTo + goto st283 + tr892: //line sip.rl:463 -value=&msg.Require - goto st283 -tr902: + value = &msg.Require + goto st283 + tr902: //line sip.rl:464 -value=&msg.RetryAfter - goto st283 -tr909: + value = &msg.RetryAfter + goto st283 + tr909: //line sip.rl:466 -value=&msg.Subject - goto st283 -tr917: + value = &msg.Subject + goto st283 + tr917: //line sip.rl:465 -value=&msg.Server - goto st283 -tr941: + value = &msg.Server + goto st283 + tr941: //line sip.rl:468 -value=&msg.Timestamp - goto st283 -tr943: + value = &msg.Timestamp + goto st283 + tr943: //line sip.rl:441 -value=&msg.Allow + value = &msg.Allow //line sip.rl:442 -value=&msg.AllowEvents - goto st283 -tr956: + value = &msg.AllowEvents + goto st283 + tr956: //line sip.rl:469 -value=&msg.Unsupported - goto st283 -tr966: + value = &msg.Unsupported + goto st283 + tr966: //line sip.rl:470 -value=&msg.UserAgent - goto st283 -tr983: + value = &msg.UserAgent + goto st283 + tr983: //line sip.rl:471 -value=&msg.Warning - goto st283 -tr999: + value = &msg.Warning + goto st283 + tr999: //line sip.rl:472 -value=&msg.WWWAuthenticate - goto st283 + value = &msg.WWWAuthenticate + goto st283 st283: if p++; p == pe { goto _test_eof283 @@ -10162,156 +10225,156 @@ value=&msg.WWWAuthenticate goto st284 } goto st0 -tr436: + tr436: //line sip.rl:438 -value=&msg.AcceptContact - goto st284 -tr452: + value = &msg.AcceptContact + goto st284 + tr452: //line sip.rl:437 -value=&msg.Accept - goto st284 -tr470: + value = &msg.Accept + goto st284 + tr470: //line sip.rl:439 -value=&msg.AcceptEncoding - goto st284 -tr479: + value = &msg.AcceptEncoding + goto st284 + tr479: //line sip.rl:440 -value=&msg.AcceptLanguage - goto st284 -tr490: + value = &msg.AcceptLanguage + goto st284 + tr490: //line sip.rl:443 -value=&msg.AlertInfo - goto st284 -tr495: + value = &msg.AlertInfo + goto st284 + tr495: //line sip.rl:441 -value=&msg.Allow - goto st284 -tr503: + value = &msg.Allow + goto st284 + tr503: //line sip.rl:442 -value=&msg.AllowEvents - goto st284 -tr523: + value = &msg.AllowEvents + goto st284 + tr523: //line sip.rl:444 -value=&msg.AuthenticationInfo - goto st284 -tr533: + value = &msg.AuthenticationInfo + goto st284 + tr533: //line sip.rl:445 -value=&msg.Authorization - goto st284 -tr535: + value = &msg.Authorization + goto st284 + tr535: //line sip.rl:462 -value=&msg.ReferredBy - goto st284 -tr565: + value = &msg.ReferredBy + goto st284 + tr565: //line sip.rl:449 -value=&msg.CallInfo - goto st284 -tr598: + value = &msg.CallInfo + goto st284 + tr598: //line sip.rl:446 -value=&msg.ContentDisposition - goto st284 -tr607: + value = &msg.ContentDisposition + goto st284 + tr607: //line sip.rl:448 -value=&msg.ContentEncoding - goto st284 -tr617: + value = &msg.ContentEncoding + goto st284 + tr617: //line sip.rl:447 -value=&msg.ContentLanguage - goto st284 -tr652: + value = &msg.ContentLanguage + goto st284 + tr652: //line sip.rl:450 -value=&msg.Date - goto st284 -tr665: + value = &msg.Date + goto st284 + tr665: //line sip.rl:451 -value=&msg.ErrorInfo - goto st284 -tr670: + value = &msg.ErrorInfo + goto st284 + tr670: //line sip.rl:452 -value=&msg.Event - goto st284 -tr699: + value = &msg.Event + goto st284 + tr699: //line sip.rl:453 -value=&msg.InReplyTo - goto st284 -tr701: + value = &msg.InReplyTo + goto st284 + tr701: //line sip.rl:467 -value=&msg.Supported - goto st284 -tr740: + value = &msg.Supported + goto st284 + tr740: //line sip.rl:455 -value=&msg.MIMEVersion - goto st284 -tr768: + value = &msg.MIMEVersion + goto st284 + tr768: //line sip.rl:456 -value=&msg.Organization - goto st284 -tr798: + value = &msg.Organization + goto st284 + tr798: //line sip.rl:457 -value=&msg.Priority - goto st284 -tr817: + value = &msg.Priority + goto st284 + tr817: //line sip.rl:458 -value=&msg.ProxyAuthenticate - goto st284 -tr827: + value = &msg.ProxyAuthenticate + goto st284 + tr827: //line sip.rl:459 -value=&msg.ProxyAuthorization - goto st284 -tr835: + value = &msg.ProxyAuthorization + goto st284 + tr835: //line sip.rl:460 -value=&msg.ProxyRequire - goto st284 -tr837: + value = &msg.ProxyRequire + goto st284 + tr837: //line sip.rl:461 -value=&msg.ReferTo - goto st284 -tr887: + value = &msg.ReferTo + goto st284 + tr887: //line sip.rl:454 -value=&msg.ReplyTo - goto st284 -tr893: + value = &msg.ReplyTo + goto st284 + tr893: //line sip.rl:463 -value=&msg.Require - goto st284 -tr903: + value = &msg.Require + goto st284 + tr903: //line sip.rl:464 -value=&msg.RetryAfter - goto st284 -tr910: + value = &msg.RetryAfter + goto st284 + tr910: //line sip.rl:466 -value=&msg.Subject - goto st284 -tr918: + value = &msg.Subject + goto st284 + tr918: //line sip.rl:465 -value=&msg.Server - goto st284 -tr942: + value = &msg.Server + goto st284 + tr942: //line sip.rl:468 -value=&msg.Timestamp - goto st284 -tr944: + value = &msg.Timestamp + goto st284 + tr944: //line sip.rl:441 -value=&msg.Allow + value = &msg.Allow //line sip.rl:442 -value=&msg.AllowEvents - goto st284 -tr957: + value = &msg.AllowEvents + goto st284 + tr957: //line sip.rl:469 -value=&msg.Unsupported - goto st284 -tr967: + value = &msg.Unsupported + goto st284 + tr967: //line sip.rl:470 -value=&msg.UserAgent - goto st284 -tr984: + value = &msg.UserAgent + goto st284 + tr984: //line sip.rl:471 -value=&msg.Warning - goto st284 -tr1000: + value = &msg.Warning + goto st284 + tr1000: //line sip.rl:472 -value=&msg.WWWAuthenticate - goto st284 + value = &msg.WWWAuthenticate + goto st284 st284: if p++; p == pe { goto _test_eof284 @@ -10321,7 +10384,7 @@ value=&msg.WWWAuthenticate _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -10344,58 +10407,68 @@ value=&msg.WWWAuthenticate goto tr442 } goto st0 -tr559: + tr559: //line sip.rl:244 - {goto st280 } - goto st782 -tr442: + { + goto st280 + } + goto st782 + tr442: //line sip.rl:59 - p-- - + p-- //line sip.rl:245 - {goto st263 } - goto st782 -tr541: + { + goto st263 + } + goto st782 + tr541: //line sip.rl:59 - p-- - + p-- //line sip.rl:243 - {goto st34 } - goto st782 -tr576: + { + goto st34 + } + goto st782 + tr576: //line sip.rl:521 -value=nil + value = nil //line sip.rl:59 - p-- - + p-- //line sip.rl:239 - {goto st256 } - goto st782 -tr971: + { + goto st256 + } + goto st782 + tr971: //line sip.rl:124 - via = new(Via) + via = new(Via) //line sip.rl:59 - p-- - + p-- //line sip.rl:246 - {goto st103 } - goto st782 -tr1001: + { + goto st103 + } + goto st782 + tr1001: //line sip.rl:63 - {p++; cs = 782; goto _out } + { + p++ + cs = 782 + goto _out + } - goto st782 + goto st782 st782: if p++; p == pe { goto _test_eof782 @@ -11430,7 +11503,7 @@ tr1001: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -11583,7 +11656,7 @@ tr1001: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -11630,12 +11703,12 @@ tr1001: goto tr553 } goto st0 -tr553: + tr553: //line sip.rl:67 - mark = p + mark = p - goto st378 + goto st378 st378: if p++; p == pe { goto _test_eof378 @@ -11645,7 +11718,7 @@ tr553: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -11736,7 +11809,7 @@ tr553: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -11779,18 +11852,18 @@ tr553: goto st380 } goto st0 -tr557: + tr557: //line sip.rl:207 - msg.CallID = string(data[mark:p]) + msg.CallID = string(data[mark:p]) - goto st381 -tr643: + goto st381 + tr643: //line sip.rl:223 - msg.CSeqMethod = string(data[mark:p]) + msg.CSeqMethod = string(data[mark:p]) - goto st381 + goto st381 st381: if p++; p == pe { goto _test_eof381 @@ -11984,34 +12057,34 @@ tr643: goto tr573 } goto tr416 -tr572: + tr572: //line sip.rl:424 -addrp=lastAddr(&msg.Contact) - goto st394 -tr683: + addrp = lastAddr(&msg.Contact) + goto st394 + tr683: //line sip.rl:425 -addrp=lastAddr(&msg.From) - goto st394 -tr788: + addrp = lastAddr(&msg.From) + goto st394 + tr788: //line sip.rl:426 -addrp=lastAddr(&msg.PAssertedIdentity) - goto st394 -tr855: + addrp = lastAddr(&msg.PAssertedIdentity) + goto st394 + tr855: //line sip.rl:427 -addrp=lastAddr(&msg.RecordRoute) - goto st394 -tr879: + addrp = lastAddr(&msg.RecordRoute) + goto st394 + tr879: //line sip.rl:428 -addrp=lastAddr(&msg.RemotePartyID) - goto st394 -tr907: + addrp = lastAddr(&msg.RemotePartyID) + goto st394 + tr907: //line sip.rl:429 -addrp=lastAddr(&msg.Route) - goto st394 -tr930: + addrp = lastAddr(&msg.Route) + goto st394 + tr930: //line sip.rl:430 -addrp=lastAddr(&msg.To) - goto st394 + addrp = lastAddr(&msg.To) + goto st394 st394: if p++; p == pe { goto _test_eof394 @@ -12027,34 +12100,34 @@ addrp=lastAddr(&msg.To) goto st395 } goto st0 -tr573: + tr573: //line sip.rl:424 -addrp=lastAddr(&msg.Contact) - goto st395 -tr684: + addrp = lastAddr(&msg.Contact) + goto st395 + tr684: //line sip.rl:425 -addrp=lastAddr(&msg.From) - goto st395 -tr789: + addrp = lastAddr(&msg.From) + goto st395 + tr789: //line sip.rl:426 -addrp=lastAddr(&msg.PAssertedIdentity) - goto st395 -tr856: + addrp = lastAddr(&msg.PAssertedIdentity) + goto st395 + tr856: //line sip.rl:427 -addrp=lastAddr(&msg.RecordRoute) - goto st395 -tr880: + addrp = lastAddr(&msg.RecordRoute) + goto st395 + tr880: //line sip.rl:428 -addrp=lastAddr(&msg.RemotePartyID) - goto st395 -tr908: + addrp = lastAddr(&msg.RemotePartyID) + goto st395 + tr908: //line sip.rl:429 -addrp=lastAddr(&msg.Route) - goto st395 -tr931: + addrp = lastAddr(&msg.Route) + goto st395 + tr931: //line sip.rl:430 -addrp=lastAddr(&msg.To) - goto st395 + addrp = lastAddr(&msg.To) + goto st395 st395: if p++; p == pe { goto _test_eof395 @@ -12064,7 +12137,7 @@ addrp=lastAddr(&msg.To) _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -12595,7 +12668,7 @@ addrp=lastAddr(&msg.To) _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -12611,20 +12684,20 @@ addrp=lastAddr(&msg.To) goto tr624 } goto st0 -tr624: + tr624: //line sip.rl:480 -clen=0 + clen = 0 //line sip.rl:211 - clen = clen * 10 + (int(data[p]) - 0x30) + clen = clen*10 + (int(data[p]) - 0x30) - goto st437 -tr626: + goto st437 + tr626: //line sip.rl:211 - clen = clen * 10 + (int(data[p]) - 0x30) + clen = clen*10 + (int(data[p]) - 0x30) - goto st437 + goto st437 st437: if p++; p == pe { goto _test_eof437 @@ -12634,7 +12707,7 @@ tr626: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -12791,7 +12864,7 @@ tr626: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -12807,12 +12880,12 @@ tr626: goto tr637 } goto st0 -tr637: + tr637: //line sip.rl:219 - msg.CSeq = msg.CSeq * 10 + (int(data[p]) - 0x30) + msg.CSeq = msg.CSeq*10 + (int(data[p]) - 0x30) - goto st450 + goto st450 st450: if p++; p == pe { goto _test_eof450 @@ -12822,7 +12895,7 @@ tr637: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -12846,7 +12919,7 @@ tr637: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -12889,12 +12962,12 @@ tr637: goto tr641 } goto st0 -tr641: + tr641: //line sip.rl:67 - mark = p + mark = p - goto st452 + goto st452 st452: if p++; p == pe { goto _test_eof452 @@ -12904,7 +12977,7 @@ tr641: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -13371,7 +13444,7 @@ tr641: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -13387,20 +13460,20 @@ tr641: goto tr678 } goto st0 -tr678: + tr678: //line sip.rl:482 -msg.Expires=0 + msg.Expires = 0 //line sip.rl:227 - msg.Expires = msg.Expires * 10 + (int(data[p]) - 0x30) + msg.Expires = msg.Expires*10 + (int(data[p]) - 0x30) - goto st485 -tr680: + goto st485 + tr680: //line sip.rl:227 - msg.Expires = msg.Expires * 10 + (int(data[p]) - 0x30) + msg.Expires = msg.Expires*10 + (int(data[p]) - 0x30) - goto st485 + goto st485 st485: if p++; p == pe { goto _test_eof485 @@ -13410,7 +13483,7 @@ tr680: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -13697,7 +13770,7 @@ tr680: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -13713,50 +13786,50 @@ tr680: goto tr704 } goto st0 -tr704: + tr704: //line sip.rl:480 -clen=0 + clen = 0 //line sip.rl:211 - clen = clen * 10 + (int(data[p]) - 0x30) + clen = clen*10 + (int(data[p]) - 0x30) //line sip.rl:482 -msg.Expires=0 + msg.Expires = 0 //line sip.rl:227 - msg.Expires = msg.Expires * 10 + (int(data[p]) - 0x30) + msg.Expires = msg.Expires*10 + (int(data[p]) - 0x30) //line sip.rl:483 -msg.MaxForwards=0 + msg.MaxForwards = 0 //line sip.rl:231 - msg.MaxForwards = msg.MaxForwards * 10 + (int(data[p]) - 0x30) + msg.MaxForwards = msg.MaxForwards*10 + (int(data[p]) - 0x30) //line sip.rl:484 -msg.MinExpires=0 + msg.MinExpires = 0 //line sip.rl:235 - msg.MinExpires = msg.MinExpires * 10 + (int(data[p]) - 0x30) + msg.MinExpires = msg.MinExpires*10 + (int(data[p]) - 0x30) - goto st508 -tr706: + goto st508 + tr706: //line sip.rl:211 - clen = clen * 10 + (int(data[p]) - 0x30) + clen = clen*10 + (int(data[p]) - 0x30) //line sip.rl:227 - msg.Expires = msg.Expires * 10 + (int(data[p]) - 0x30) + msg.Expires = msg.Expires*10 + (int(data[p]) - 0x30) //line sip.rl:231 - msg.MaxForwards = msg.MaxForwards * 10 + (int(data[p]) - 0x30) + msg.MaxForwards = msg.MaxForwards*10 + (int(data[p]) - 0x30) //line sip.rl:235 - msg.MinExpires = msg.MinExpires * 10 + (int(data[p]) - 0x30) + msg.MinExpires = msg.MinExpires*10 + (int(data[p]) - 0x30) - goto st508 + goto st508 st508: if p++; p == pe { goto _test_eof508 @@ -13766,7 +13839,7 @@ tr706: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -13988,7 +14061,7 @@ tr706: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -14004,20 +14077,20 @@ tr706: goto tr723 } goto st0 -tr723: + tr723: //line sip.rl:483 -msg.MaxForwards=0 + msg.MaxForwards = 0 //line sip.rl:231 - msg.MaxForwards = msg.MaxForwards * 10 + (int(data[p]) - 0x30) + msg.MaxForwards = msg.MaxForwards*10 + (int(data[p]) - 0x30) - goto st526 -tr725: + goto st526 + tr725: //line sip.rl:231 - msg.MaxForwards = msg.MaxForwards * 10 + (int(data[p]) - 0x30) + msg.MaxForwards = msg.MaxForwards*10 + (int(data[p]) - 0x30) - goto st526 + goto st526 st526: if p++; p == pe { goto _test_eof526 @@ -14027,7 +14100,7 @@ tr725: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -14338,7 +14411,7 @@ tr725: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -14354,20 +14427,20 @@ tr725: goto tr751 } goto st0 -tr751: + tr751: //line sip.rl:484 -msg.MinExpires=0 + msg.MinExpires = 0 //line sip.rl:235 - msg.MinExpires = msg.MinExpires * 10 + (int(data[p]) - 0x30) + msg.MinExpires = msg.MinExpires*10 + (int(data[p]) - 0x30) - goto st552 -tr753: + goto st552 + tr753: //line sip.rl:235 - msg.MinExpires = msg.MinExpires * 10 + (int(data[p]) - 0x30) + msg.MinExpires = msg.MinExpires*10 + (int(data[p]) - 0x30) - goto st552 + goto st552 st552: if p++; p == pe { goto _test_eof552 @@ -14377,7 +14450,7 @@ tr753: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -16697,7 +16770,7 @@ tr753: _widec = int16(data[p]) if 13 <= data[p] && data[p] <= 13 { _widec = 256 + (int16(data[p]) - 0) - if lookAheadWSP(data, p, pe) { + if lookAheadWSP(data, p, pe) { _widec += 256 } } @@ -17058,841 +17131,2401 @@ tr753: } goto st0 st_out: - _test_eof2: cs = 2; goto _test_eof - _test_eof3: cs = 3; goto _test_eof - _test_eof4: cs = 4; goto _test_eof - _test_eof5: cs = 5; goto _test_eof - _test_eof6: cs = 6; goto _test_eof - _test_eof7: cs = 7; goto _test_eof - _test_eof8: cs = 8; goto _test_eof - _test_eof9: cs = 9; goto _test_eof - _test_eof10: cs = 10; goto _test_eof - _test_eof11: cs = 11; goto _test_eof - _test_eof12: cs = 12; goto _test_eof - _test_eof13: cs = 13; goto _test_eof - _test_eof765: cs = 765; goto _test_eof - _test_eof14: cs = 14; goto _test_eof - _test_eof15: cs = 15; goto _test_eof - _test_eof16: cs = 16; goto _test_eof - _test_eof17: cs = 17; goto _test_eof - _test_eof18: cs = 18; goto _test_eof - _test_eof19: cs = 19; goto _test_eof - _test_eof20: cs = 20; goto _test_eof - _test_eof21: cs = 21; goto _test_eof - _test_eof22: cs = 22; goto _test_eof - _test_eof23: cs = 23; goto _test_eof - _test_eof24: cs = 24; goto _test_eof - _test_eof25: cs = 25; goto _test_eof - _test_eof26: cs = 26; goto _test_eof - _test_eof27: cs = 27; goto _test_eof - _test_eof28: cs = 28; goto _test_eof - _test_eof29: cs = 29; goto _test_eof - _test_eof30: cs = 30; goto _test_eof - _test_eof31: cs = 31; goto _test_eof - _test_eof32: cs = 32; goto _test_eof - _test_eof33: cs = 33; goto _test_eof - _test_eof34: cs = 34; goto _test_eof - _test_eof35: cs = 35; goto _test_eof - _test_eof36: cs = 36; goto _test_eof - _test_eof37: cs = 37; goto _test_eof - _test_eof38: cs = 38; goto _test_eof - _test_eof39: cs = 39; goto _test_eof - _test_eof40: cs = 40; goto _test_eof - _test_eof41: cs = 41; goto _test_eof - _test_eof42: cs = 42; goto _test_eof - _test_eof43: cs = 43; goto _test_eof - _test_eof44: cs = 44; goto _test_eof - _test_eof766: cs = 766; goto _test_eof - _test_eof45: cs = 45; goto _test_eof - _test_eof46: cs = 46; goto _test_eof - _test_eof47: cs = 47; goto _test_eof - _test_eof48: cs = 48; goto _test_eof - _test_eof49: cs = 49; goto _test_eof - _test_eof50: cs = 50; goto _test_eof - _test_eof51: cs = 51; goto _test_eof - _test_eof52: cs = 52; goto _test_eof - _test_eof53: cs = 53; goto _test_eof - _test_eof54: cs = 54; goto _test_eof - _test_eof55: cs = 55; goto _test_eof - _test_eof56: cs = 56; goto _test_eof - _test_eof57: cs = 57; goto _test_eof - _test_eof58: cs = 58; goto _test_eof - _test_eof59: cs = 59; goto _test_eof - _test_eof60: cs = 60; goto _test_eof - _test_eof61: cs = 61; goto _test_eof - _test_eof62: cs = 62; goto _test_eof - _test_eof63: cs = 63; goto _test_eof - _test_eof64: cs = 64; goto _test_eof - _test_eof65: cs = 65; goto _test_eof - _test_eof66: cs = 66; goto _test_eof - _test_eof67: cs = 67; goto _test_eof - _test_eof68: cs = 68; goto _test_eof - _test_eof69: cs = 69; goto _test_eof - _test_eof70: cs = 70; goto _test_eof - _test_eof71: cs = 71; goto _test_eof - _test_eof767: cs = 767; goto _test_eof - _test_eof72: cs = 72; goto _test_eof - _test_eof73: cs = 73; goto _test_eof - _test_eof74: cs = 74; goto _test_eof - _test_eof75: cs = 75; goto _test_eof - _test_eof76: cs = 76; goto _test_eof - _test_eof77: cs = 77; goto _test_eof - _test_eof78: cs = 78; goto _test_eof - _test_eof79: cs = 79; goto _test_eof - _test_eof80: cs = 80; goto _test_eof - _test_eof81: cs = 81; goto _test_eof - _test_eof82: cs = 82; goto _test_eof - _test_eof83: cs = 83; goto _test_eof - _test_eof84: cs = 84; goto _test_eof - _test_eof85: cs = 85; goto _test_eof - _test_eof86: cs = 86; goto _test_eof - _test_eof87: cs = 87; goto _test_eof - _test_eof88: cs = 88; goto _test_eof - _test_eof89: cs = 89; goto _test_eof - _test_eof90: cs = 90; goto _test_eof - _test_eof91: cs = 91; goto _test_eof - _test_eof92: cs = 92; goto _test_eof - _test_eof93: cs = 93; goto _test_eof - _test_eof94: cs = 94; goto _test_eof - _test_eof95: cs = 95; goto _test_eof - _test_eof96: cs = 96; goto _test_eof - _test_eof97: cs = 97; goto _test_eof - _test_eof98: cs = 98; goto _test_eof - _test_eof99: cs = 99; goto _test_eof - _test_eof100: cs = 100; goto _test_eof - _test_eof101: cs = 101; goto _test_eof - _test_eof102: cs = 102; goto _test_eof - _test_eof103: cs = 103; goto _test_eof - _test_eof104: cs = 104; goto _test_eof - _test_eof105: cs = 105; goto _test_eof - _test_eof106: cs = 106; goto _test_eof - _test_eof107: cs = 107; goto _test_eof - _test_eof108: cs = 108; goto _test_eof - _test_eof109: cs = 109; goto _test_eof - _test_eof110: cs = 110; goto _test_eof - _test_eof111: cs = 111; goto _test_eof - _test_eof112: cs = 112; goto _test_eof - _test_eof113: cs = 113; goto _test_eof - _test_eof114: cs = 114; goto _test_eof - _test_eof768: cs = 768; goto _test_eof - _test_eof115: cs = 115; goto _test_eof - _test_eof116: cs = 116; goto _test_eof - _test_eof117: cs = 117; goto _test_eof - _test_eof118: cs = 118; goto _test_eof - _test_eof119: cs = 119; goto _test_eof - _test_eof120: cs = 120; goto _test_eof - _test_eof121: cs = 121; goto _test_eof - _test_eof122: cs = 122; goto _test_eof - _test_eof123: cs = 123; goto _test_eof - _test_eof124: cs = 124; goto _test_eof - _test_eof125: cs = 125; goto _test_eof - _test_eof126: cs = 126; goto _test_eof - _test_eof127: cs = 127; goto _test_eof - _test_eof128: cs = 128; goto _test_eof - _test_eof129: cs = 129; goto _test_eof - _test_eof130: cs = 130; goto _test_eof - _test_eof131: cs = 131; goto _test_eof - _test_eof132: cs = 132; goto _test_eof - _test_eof133: cs = 133; goto _test_eof - _test_eof134: cs = 134; goto _test_eof - _test_eof135: cs = 135; goto _test_eof - _test_eof136: cs = 136; goto _test_eof - _test_eof137: cs = 137; goto _test_eof - _test_eof138: cs = 138; goto _test_eof - _test_eof139: cs = 139; goto _test_eof - _test_eof140: cs = 140; goto _test_eof - _test_eof141: cs = 141; goto _test_eof - _test_eof142: cs = 142; goto _test_eof - _test_eof143: cs = 143; goto _test_eof - _test_eof144: cs = 144; goto _test_eof - _test_eof145: cs = 145; goto _test_eof - _test_eof146: cs = 146; goto _test_eof - _test_eof147: cs = 147; goto _test_eof - _test_eof148: cs = 148; goto _test_eof - _test_eof149: cs = 149; goto _test_eof - _test_eof150: cs = 150; goto _test_eof - _test_eof151: cs = 151; goto _test_eof - _test_eof152: cs = 152; goto _test_eof - _test_eof153: cs = 153; goto _test_eof - _test_eof154: cs = 154; goto _test_eof - _test_eof155: cs = 155; goto _test_eof - _test_eof156: cs = 156; goto _test_eof - _test_eof769: cs = 769; goto _test_eof - _test_eof157: cs = 157; goto _test_eof - _test_eof158: cs = 158; goto _test_eof - _test_eof159: cs = 159; goto _test_eof - _test_eof160: cs = 160; goto _test_eof - _test_eof161: cs = 161; goto _test_eof - _test_eof162: cs = 162; goto _test_eof - _test_eof163: cs = 163; goto _test_eof - _test_eof164: cs = 164; goto _test_eof - _test_eof165: cs = 165; goto _test_eof - _test_eof166: cs = 166; goto _test_eof - _test_eof167: cs = 167; goto _test_eof - _test_eof168: cs = 168; goto _test_eof - _test_eof169: cs = 169; goto _test_eof - _test_eof170: cs = 170; goto _test_eof - _test_eof171: cs = 171; goto _test_eof - _test_eof172: cs = 172; goto _test_eof - _test_eof173: cs = 173; goto _test_eof - _test_eof174: cs = 174; goto _test_eof - _test_eof175: cs = 175; goto _test_eof - _test_eof176: cs = 176; goto _test_eof - _test_eof177: cs = 177; goto _test_eof - _test_eof178: cs = 178; goto _test_eof - _test_eof179: cs = 179; goto _test_eof - _test_eof180: cs = 180; goto _test_eof - _test_eof181: cs = 181; goto _test_eof - _test_eof182: cs = 182; goto _test_eof - _test_eof183: cs = 183; goto _test_eof - _test_eof184: cs = 184; goto _test_eof - _test_eof185: cs = 185; goto _test_eof - _test_eof186: cs = 186; goto _test_eof - _test_eof187: cs = 187; goto _test_eof - _test_eof188: cs = 188; goto _test_eof - _test_eof189: cs = 189; goto _test_eof - _test_eof190: cs = 190; goto _test_eof - _test_eof191: cs = 191; goto _test_eof - _test_eof192: cs = 192; goto _test_eof - _test_eof193: cs = 193; goto _test_eof - _test_eof194: cs = 194; goto _test_eof - _test_eof195: cs = 195; goto _test_eof - _test_eof770: cs = 770; goto _test_eof - _test_eof196: cs = 196; goto _test_eof - _test_eof197: cs = 197; goto _test_eof - _test_eof198: cs = 198; goto _test_eof - _test_eof199: cs = 199; goto _test_eof - _test_eof200: cs = 200; goto _test_eof - _test_eof201: cs = 201; goto _test_eof - _test_eof202: cs = 202; goto _test_eof - _test_eof203: cs = 203; goto _test_eof - _test_eof204: cs = 204; goto _test_eof - _test_eof205: cs = 205; goto _test_eof - _test_eof206: cs = 206; goto _test_eof - _test_eof207: cs = 207; goto _test_eof - _test_eof208: cs = 208; goto _test_eof - _test_eof209: cs = 209; goto _test_eof - _test_eof210: cs = 210; goto _test_eof - _test_eof211: cs = 211; goto _test_eof - _test_eof212: cs = 212; goto _test_eof - _test_eof213: cs = 213; goto _test_eof - _test_eof214: cs = 214; goto _test_eof - _test_eof215: cs = 215; goto _test_eof - _test_eof216: cs = 216; goto _test_eof - _test_eof217: cs = 217; goto _test_eof - _test_eof218: cs = 218; goto _test_eof - _test_eof219: cs = 219; goto _test_eof - _test_eof220: cs = 220; goto _test_eof - _test_eof221: cs = 221; goto _test_eof - _test_eof222: cs = 222; goto _test_eof - _test_eof223: cs = 223; goto _test_eof - _test_eof224: cs = 224; goto _test_eof - _test_eof225: cs = 225; goto _test_eof - _test_eof226: cs = 226; goto _test_eof - _test_eof227: cs = 227; goto _test_eof - _test_eof228: cs = 228; goto _test_eof - _test_eof229: cs = 229; goto _test_eof - _test_eof230: cs = 230; goto _test_eof - _test_eof231: cs = 231; goto _test_eof - _test_eof232: cs = 232; goto _test_eof - _test_eof233: cs = 233; goto _test_eof - _test_eof234: cs = 234; goto _test_eof - _test_eof771: cs = 771; goto _test_eof - _test_eof235: cs = 235; goto _test_eof - _test_eof236: cs = 236; goto _test_eof - _test_eof237: cs = 237; goto _test_eof - _test_eof238: cs = 238; goto _test_eof - _test_eof239: cs = 239; goto _test_eof - _test_eof240: cs = 240; goto _test_eof - _test_eof241: cs = 241; goto _test_eof - _test_eof242: cs = 242; goto _test_eof - _test_eof243: cs = 243; goto _test_eof - _test_eof244: cs = 244; goto _test_eof - _test_eof245: cs = 245; goto _test_eof - _test_eof246: cs = 246; goto _test_eof - _test_eof772: cs = 772; goto _test_eof - _test_eof247: cs = 247; goto _test_eof - _test_eof248: cs = 248; goto _test_eof - _test_eof249: cs = 249; goto _test_eof - _test_eof773: cs = 773; goto _test_eof - _test_eof250: cs = 250; goto _test_eof - _test_eof251: cs = 251; goto _test_eof - _test_eof774: cs = 774; goto _test_eof - _test_eof252: cs = 252; goto _test_eof - _test_eof253: cs = 253; goto _test_eof - _test_eof254: cs = 254; goto _test_eof - _test_eof775: cs = 775; goto _test_eof - _test_eof776: cs = 776; goto _test_eof - _test_eof777: cs = 777; goto _test_eof - _test_eof778: cs = 778; goto _test_eof - _test_eof255: cs = 255; goto _test_eof - _test_eof256: cs = 256; goto _test_eof - _test_eof257: cs = 257; goto _test_eof - _test_eof258: cs = 258; goto _test_eof - _test_eof779: cs = 779; goto _test_eof - _test_eof259: cs = 259; goto _test_eof - _test_eof260: cs = 260; goto _test_eof - _test_eof261: cs = 261; goto _test_eof - _test_eof262: cs = 262; goto _test_eof - _test_eof263: cs = 263; goto _test_eof - _test_eof264: cs = 264; goto _test_eof - _test_eof265: cs = 265; goto _test_eof - _test_eof266: cs = 266; goto _test_eof - _test_eof267: cs = 267; goto _test_eof - _test_eof268: cs = 268; goto _test_eof - _test_eof269: cs = 269; goto _test_eof - _test_eof270: cs = 270; goto _test_eof - _test_eof780: cs = 780; goto _test_eof - _test_eof271: cs = 271; goto _test_eof - _test_eof272: cs = 272; goto _test_eof - _test_eof273: cs = 273; goto _test_eof - _test_eof274: cs = 274; goto _test_eof - _test_eof275: cs = 275; goto _test_eof - _test_eof276: cs = 276; goto _test_eof - _test_eof781: cs = 781; goto _test_eof - _test_eof277: cs = 277; goto _test_eof - _test_eof278: cs = 278; goto _test_eof - _test_eof279: cs = 279; goto _test_eof - _test_eof280: cs = 280; goto _test_eof - _test_eof281: cs = 281; goto _test_eof - _test_eof282: cs = 282; goto _test_eof - _test_eof283: cs = 283; goto _test_eof - _test_eof284: cs = 284; goto _test_eof - _test_eof782: cs = 782; goto _test_eof - _test_eof285: cs = 285; goto _test_eof - _test_eof286: cs = 286; goto _test_eof - _test_eof287: cs = 287; goto _test_eof - _test_eof288: cs = 288; goto _test_eof - _test_eof289: cs = 289; goto _test_eof - _test_eof290: cs = 290; goto _test_eof - _test_eof291: cs = 291; goto _test_eof - _test_eof292: cs = 292; goto _test_eof - _test_eof293: cs = 293; goto _test_eof - _test_eof294: cs = 294; goto _test_eof - _test_eof295: cs = 295; goto _test_eof - _test_eof296: cs = 296; goto _test_eof - _test_eof297: cs = 297; goto _test_eof - _test_eof298: cs = 298; goto _test_eof - _test_eof299: cs = 299; goto _test_eof - _test_eof300: cs = 300; goto _test_eof - _test_eof301: cs = 301; goto _test_eof - _test_eof302: cs = 302; goto _test_eof - _test_eof303: cs = 303; goto _test_eof - _test_eof304: cs = 304; goto _test_eof - _test_eof305: cs = 305; goto _test_eof - _test_eof306: cs = 306; goto _test_eof - _test_eof307: cs = 307; goto _test_eof - _test_eof308: cs = 308; goto _test_eof - _test_eof309: cs = 309; goto _test_eof - _test_eof310: cs = 310; goto _test_eof - _test_eof311: cs = 311; goto _test_eof - _test_eof312: cs = 312; goto _test_eof - _test_eof313: cs = 313; goto _test_eof - _test_eof314: cs = 314; goto _test_eof - _test_eof315: cs = 315; goto _test_eof - _test_eof316: cs = 316; goto _test_eof - _test_eof317: cs = 317; goto _test_eof - _test_eof318: cs = 318; goto _test_eof - _test_eof319: cs = 319; goto _test_eof - _test_eof320: cs = 320; goto _test_eof - _test_eof321: cs = 321; goto _test_eof - _test_eof322: cs = 322; goto _test_eof - _test_eof323: cs = 323; goto _test_eof - _test_eof324: cs = 324; goto _test_eof - _test_eof325: cs = 325; goto _test_eof - _test_eof326: cs = 326; goto _test_eof - _test_eof327: cs = 327; goto _test_eof - _test_eof328: cs = 328; goto _test_eof - _test_eof329: cs = 329; goto _test_eof - _test_eof330: cs = 330; goto _test_eof - _test_eof331: cs = 331; goto _test_eof - _test_eof332: cs = 332; goto _test_eof - _test_eof333: cs = 333; goto _test_eof - _test_eof334: cs = 334; goto _test_eof - _test_eof335: cs = 335; goto _test_eof - _test_eof336: cs = 336; goto _test_eof - _test_eof337: cs = 337; goto _test_eof - _test_eof338: cs = 338; goto _test_eof - _test_eof339: cs = 339; goto _test_eof - _test_eof340: cs = 340; goto _test_eof - _test_eof341: cs = 341; goto _test_eof - _test_eof342: cs = 342; goto _test_eof - _test_eof343: cs = 343; goto _test_eof - _test_eof344: cs = 344; goto _test_eof - _test_eof345: cs = 345; goto _test_eof - _test_eof346: cs = 346; goto _test_eof - _test_eof347: cs = 347; goto _test_eof - _test_eof348: cs = 348; goto _test_eof - _test_eof349: cs = 349; goto _test_eof - _test_eof350: cs = 350; goto _test_eof - _test_eof351: cs = 351; goto _test_eof - _test_eof352: cs = 352; goto _test_eof - _test_eof353: cs = 353; goto _test_eof - _test_eof354: cs = 354; goto _test_eof - _test_eof355: cs = 355; goto _test_eof - _test_eof356: cs = 356; goto _test_eof - _test_eof357: cs = 357; goto _test_eof - _test_eof358: cs = 358; goto _test_eof - _test_eof359: cs = 359; goto _test_eof - _test_eof360: cs = 360; goto _test_eof - _test_eof361: cs = 361; goto _test_eof - _test_eof362: cs = 362; goto _test_eof - _test_eof363: cs = 363; goto _test_eof - _test_eof364: cs = 364; goto _test_eof - _test_eof365: cs = 365; goto _test_eof - _test_eof366: cs = 366; goto _test_eof - _test_eof367: cs = 367; goto _test_eof - _test_eof368: cs = 368; goto _test_eof - _test_eof369: cs = 369; goto _test_eof - _test_eof370: cs = 370; goto _test_eof - _test_eof371: cs = 371; goto _test_eof - _test_eof372: cs = 372; goto _test_eof - _test_eof373: cs = 373; goto _test_eof - _test_eof374: cs = 374; goto _test_eof - _test_eof375: cs = 375; goto _test_eof - _test_eof376: cs = 376; goto _test_eof - _test_eof377: cs = 377; goto _test_eof - _test_eof378: cs = 378; goto _test_eof - _test_eof379: cs = 379; goto _test_eof - _test_eof380: cs = 380; goto _test_eof - _test_eof381: cs = 381; goto _test_eof - _test_eof382: cs = 382; goto _test_eof - _test_eof383: cs = 383; goto _test_eof - _test_eof384: cs = 384; goto _test_eof - _test_eof385: cs = 385; goto _test_eof - _test_eof386: cs = 386; goto _test_eof - _test_eof387: cs = 387; goto _test_eof - _test_eof388: cs = 388; goto _test_eof - _test_eof389: cs = 389; goto _test_eof - _test_eof390: cs = 390; goto _test_eof - _test_eof391: cs = 391; goto _test_eof - _test_eof392: cs = 392; goto _test_eof - _test_eof393: cs = 393; goto _test_eof - _test_eof394: cs = 394; goto _test_eof - _test_eof395: cs = 395; goto _test_eof - _test_eof396: cs = 396; goto _test_eof - _test_eof397: cs = 397; goto _test_eof - _test_eof398: cs = 398; goto _test_eof - _test_eof399: cs = 399; goto _test_eof - _test_eof400: cs = 400; goto _test_eof - _test_eof401: cs = 401; goto _test_eof - _test_eof402: cs = 402; goto _test_eof - _test_eof403: cs = 403; goto _test_eof - _test_eof404: cs = 404; goto _test_eof - _test_eof405: cs = 405; goto _test_eof - _test_eof406: cs = 406; goto _test_eof - _test_eof407: cs = 407; goto _test_eof - _test_eof408: cs = 408; goto _test_eof - _test_eof409: cs = 409; goto _test_eof - _test_eof410: cs = 410; goto _test_eof - _test_eof411: cs = 411; goto _test_eof - _test_eof412: cs = 412; goto _test_eof - _test_eof413: cs = 413; goto _test_eof - _test_eof414: cs = 414; goto _test_eof - _test_eof415: cs = 415; goto _test_eof - _test_eof416: cs = 416; goto _test_eof - _test_eof417: cs = 417; goto _test_eof - _test_eof418: cs = 418; goto _test_eof - _test_eof419: cs = 419; goto _test_eof - _test_eof420: cs = 420; goto _test_eof - _test_eof421: cs = 421; goto _test_eof - _test_eof422: cs = 422; goto _test_eof - _test_eof423: cs = 423; goto _test_eof - _test_eof424: cs = 424; goto _test_eof - _test_eof425: cs = 425; goto _test_eof - _test_eof426: cs = 426; goto _test_eof - _test_eof427: cs = 427; goto _test_eof - _test_eof428: cs = 428; goto _test_eof - _test_eof429: cs = 429; goto _test_eof - _test_eof430: cs = 430; goto _test_eof - _test_eof431: cs = 431; goto _test_eof - _test_eof432: cs = 432; goto _test_eof - _test_eof433: cs = 433; goto _test_eof - _test_eof434: cs = 434; goto _test_eof - _test_eof435: cs = 435; goto _test_eof - _test_eof436: cs = 436; goto _test_eof - _test_eof437: cs = 437; goto _test_eof - _test_eof438: cs = 438; goto _test_eof - _test_eof439: cs = 439; goto _test_eof - _test_eof440: cs = 440; goto _test_eof - _test_eof441: cs = 441; goto _test_eof - _test_eof442: cs = 442; goto _test_eof - _test_eof443: cs = 443; goto _test_eof - _test_eof444: cs = 444; goto _test_eof - _test_eof445: cs = 445; goto _test_eof - _test_eof446: cs = 446; goto _test_eof - _test_eof447: cs = 447; goto _test_eof - _test_eof448: cs = 448; goto _test_eof - _test_eof449: cs = 449; goto _test_eof - _test_eof450: cs = 450; goto _test_eof - _test_eof451: cs = 451; goto _test_eof - _test_eof452: cs = 452; goto _test_eof - _test_eof453: cs = 453; goto _test_eof - _test_eof454: cs = 454; goto _test_eof - _test_eof455: cs = 455; goto _test_eof - _test_eof456: cs = 456; goto _test_eof - _test_eof457: cs = 457; goto _test_eof - _test_eof458: cs = 458; goto _test_eof - _test_eof459: cs = 459; goto _test_eof - _test_eof460: cs = 460; goto _test_eof - _test_eof461: cs = 461; goto _test_eof - _test_eof462: cs = 462; goto _test_eof - _test_eof463: cs = 463; goto _test_eof - _test_eof464: cs = 464; goto _test_eof - _test_eof465: cs = 465; goto _test_eof - _test_eof466: cs = 466; goto _test_eof - _test_eof467: cs = 467; goto _test_eof - _test_eof468: cs = 468; goto _test_eof - _test_eof469: cs = 469; goto _test_eof - _test_eof470: cs = 470; goto _test_eof - _test_eof471: cs = 471; goto _test_eof - _test_eof472: cs = 472; goto _test_eof - _test_eof473: cs = 473; goto _test_eof - _test_eof474: cs = 474; goto _test_eof - _test_eof475: cs = 475; goto _test_eof - _test_eof476: cs = 476; goto _test_eof - _test_eof477: cs = 477; goto _test_eof - _test_eof478: cs = 478; goto _test_eof - _test_eof479: cs = 479; goto _test_eof - _test_eof480: cs = 480; goto _test_eof - _test_eof481: cs = 481; goto _test_eof - _test_eof482: cs = 482; goto _test_eof - _test_eof483: cs = 483; goto _test_eof - _test_eof484: cs = 484; goto _test_eof - _test_eof485: cs = 485; goto _test_eof - _test_eof486: cs = 486; goto _test_eof - _test_eof487: cs = 487; goto _test_eof - _test_eof488: cs = 488; goto _test_eof - _test_eof489: cs = 489; goto _test_eof - _test_eof490: cs = 490; goto _test_eof - _test_eof491: cs = 491; goto _test_eof - _test_eof492: cs = 492; goto _test_eof - _test_eof493: cs = 493; goto _test_eof - _test_eof494: cs = 494; goto _test_eof - _test_eof495: cs = 495; goto _test_eof - _test_eof496: cs = 496; goto _test_eof - _test_eof497: cs = 497; goto _test_eof - _test_eof498: cs = 498; goto _test_eof - _test_eof499: cs = 499; goto _test_eof - _test_eof500: cs = 500; goto _test_eof - _test_eof501: cs = 501; goto _test_eof - _test_eof502: cs = 502; goto _test_eof - _test_eof503: cs = 503; goto _test_eof - _test_eof504: cs = 504; goto _test_eof - _test_eof505: cs = 505; goto _test_eof - _test_eof506: cs = 506; goto _test_eof - _test_eof507: cs = 507; goto _test_eof - _test_eof508: cs = 508; goto _test_eof - _test_eof509: cs = 509; goto _test_eof - _test_eof510: cs = 510; goto _test_eof - _test_eof511: cs = 511; goto _test_eof - _test_eof512: cs = 512; goto _test_eof - _test_eof513: cs = 513; goto _test_eof - _test_eof514: cs = 514; goto _test_eof - _test_eof515: cs = 515; goto _test_eof - _test_eof516: cs = 516; goto _test_eof - _test_eof517: cs = 517; goto _test_eof - _test_eof518: cs = 518; goto _test_eof - _test_eof519: cs = 519; goto _test_eof - _test_eof520: cs = 520; goto _test_eof - _test_eof521: cs = 521; goto _test_eof - _test_eof522: cs = 522; goto _test_eof - _test_eof523: cs = 523; goto _test_eof - _test_eof524: cs = 524; goto _test_eof - _test_eof525: cs = 525; goto _test_eof - _test_eof526: cs = 526; goto _test_eof - _test_eof527: cs = 527; goto _test_eof - _test_eof528: cs = 528; goto _test_eof - _test_eof529: cs = 529; goto _test_eof - _test_eof530: cs = 530; goto _test_eof - _test_eof531: cs = 531; goto _test_eof - _test_eof532: cs = 532; goto _test_eof - _test_eof533: cs = 533; goto _test_eof - _test_eof534: cs = 534; goto _test_eof - _test_eof535: cs = 535; goto _test_eof - _test_eof536: cs = 536; goto _test_eof - _test_eof537: cs = 537; goto _test_eof - _test_eof538: cs = 538; goto _test_eof - _test_eof539: cs = 539; goto _test_eof - _test_eof540: cs = 540; goto _test_eof - _test_eof541: cs = 541; goto _test_eof - _test_eof542: cs = 542; goto _test_eof - _test_eof543: cs = 543; goto _test_eof - _test_eof544: cs = 544; goto _test_eof - _test_eof545: cs = 545; goto _test_eof - _test_eof546: cs = 546; goto _test_eof - _test_eof547: cs = 547; goto _test_eof - _test_eof548: cs = 548; goto _test_eof - _test_eof549: cs = 549; goto _test_eof - _test_eof550: cs = 550; goto _test_eof - _test_eof551: cs = 551; goto _test_eof - _test_eof552: cs = 552; goto _test_eof - _test_eof553: cs = 553; goto _test_eof - _test_eof554: cs = 554; goto _test_eof - _test_eof555: cs = 555; goto _test_eof - _test_eof556: cs = 556; goto _test_eof - _test_eof557: cs = 557; goto _test_eof - _test_eof558: cs = 558; goto _test_eof - _test_eof559: cs = 559; goto _test_eof - _test_eof560: cs = 560; goto _test_eof - _test_eof561: cs = 561; goto _test_eof - _test_eof562: cs = 562; goto _test_eof - _test_eof563: cs = 563; goto _test_eof - _test_eof564: cs = 564; goto _test_eof - _test_eof565: cs = 565; goto _test_eof - _test_eof566: cs = 566; goto _test_eof - _test_eof567: cs = 567; goto _test_eof - _test_eof568: cs = 568; goto _test_eof - _test_eof569: cs = 569; goto _test_eof - _test_eof570: cs = 570; goto _test_eof - _test_eof571: cs = 571; goto _test_eof - _test_eof572: cs = 572; goto _test_eof - _test_eof573: cs = 573; goto _test_eof - _test_eof574: cs = 574; goto _test_eof - _test_eof575: cs = 575; goto _test_eof - _test_eof576: cs = 576; goto _test_eof - _test_eof577: cs = 577; goto _test_eof - _test_eof578: cs = 578; goto _test_eof - _test_eof579: cs = 579; goto _test_eof - _test_eof580: cs = 580; goto _test_eof - _test_eof581: cs = 581; goto _test_eof - _test_eof582: cs = 582; goto _test_eof - _test_eof583: cs = 583; goto _test_eof - _test_eof584: cs = 584; goto _test_eof - _test_eof585: cs = 585; goto _test_eof - _test_eof586: cs = 586; goto _test_eof - _test_eof587: cs = 587; goto _test_eof - _test_eof588: cs = 588; goto _test_eof - _test_eof589: cs = 589; goto _test_eof - _test_eof590: cs = 590; goto _test_eof - _test_eof591: cs = 591; goto _test_eof - _test_eof592: cs = 592; goto _test_eof - _test_eof593: cs = 593; goto _test_eof - _test_eof594: cs = 594; goto _test_eof - _test_eof595: cs = 595; goto _test_eof - _test_eof596: cs = 596; goto _test_eof - _test_eof597: cs = 597; goto _test_eof - _test_eof598: cs = 598; goto _test_eof - _test_eof599: cs = 599; goto _test_eof - _test_eof600: cs = 600; goto _test_eof - _test_eof601: cs = 601; goto _test_eof - _test_eof602: cs = 602; goto _test_eof - _test_eof603: cs = 603; goto _test_eof - _test_eof604: cs = 604; goto _test_eof - _test_eof605: cs = 605; goto _test_eof - _test_eof606: cs = 606; goto _test_eof - _test_eof607: cs = 607; goto _test_eof - _test_eof608: cs = 608; goto _test_eof - _test_eof609: cs = 609; goto _test_eof - _test_eof610: cs = 610; goto _test_eof - _test_eof611: cs = 611; goto _test_eof - _test_eof612: cs = 612; goto _test_eof - _test_eof613: cs = 613; goto _test_eof - _test_eof614: cs = 614; goto _test_eof - _test_eof615: cs = 615; goto _test_eof - _test_eof616: cs = 616; goto _test_eof - _test_eof617: cs = 617; goto _test_eof - _test_eof618: cs = 618; goto _test_eof - _test_eof619: cs = 619; goto _test_eof - _test_eof620: cs = 620; goto _test_eof - _test_eof621: cs = 621; goto _test_eof - _test_eof622: cs = 622; goto _test_eof - _test_eof623: cs = 623; goto _test_eof - _test_eof624: cs = 624; goto _test_eof - _test_eof625: cs = 625; goto _test_eof - _test_eof626: cs = 626; goto _test_eof - _test_eof627: cs = 627; goto _test_eof - _test_eof628: cs = 628; goto _test_eof - _test_eof629: cs = 629; goto _test_eof - _test_eof630: cs = 630; goto _test_eof - _test_eof631: cs = 631; goto _test_eof - _test_eof632: cs = 632; goto _test_eof - _test_eof633: cs = 633; goto _test_eof - _test_eof634: cs = 634; goto _test_eof - _test_eof635: cs = 635; goto _test_eof - _test_eof636: cs = 636; goto _test_eof - _test_eof637: cs = 637; goto _test_eof - _test_eof638: cs = 638; goto _test_eof - _test_eof639: cs = 639; goto _test_eof - _test_eof640: cs = 640; goto _test_eof - _test_eof641: cs = 641; goto _test_eof - _test_eof642: cs = 642; goto _test_eof - _test_eof643: cs = 643; goto _test_eof - _test_eof644: cs = 644; goto _test_eof - _test_eof645: cs = 645; goto _test_eof - _test_eof646: cs = 646; goto _test_eof - _test_eof647: cs = 647; goto _test_eof - _test_eof648: cs = 648; goto _test_eof - _test_eof649: cs = 649; goto _test_eof - _test_eof650: cs = 650; goto _test_eof - _test_eof651: cs = 651; goto _test_eof - _test_eof652: cs = 652; goto _test_eof - _test_eof653: cs = 653; goto _test_eof - _test_eof654: cs = 654; goto _test_eof - _test_eof655: cs = 655; goto _test_eof - _test_eof656: cs = 656; goto _test_eof - _test_eof657: cs = 657; goto _test_eof - _test_eof658: cs = 658; goto _test_eof - _test_eof659: cs = 659; goto _test_eof - _test_eof660: cs = 660; goto _test_eof - _test_eof661: cs = 661; goto _test_eof - _test_eof662: cs = 662; goto _test_eof - _test_eof663: cs = 663; goto _test_eof - _test_eof664: cs = 664; goto _test_eof - _test_eof665: cs = 665; goto _test_eof - _test_eof666: cs = 666; goto _test_eof - _test_eof667: cs = 667; goto _test_eof - _test_eof668: cs = 668; goto _test_eof - _test_eof669: cs = 669; goto _test_eof - _test_eof670: cs = 670; goto _test_eof - _test_eof671: cs = 671; goto _test_eof - _test_eof672: cs = 672; goto _test_eof - _test_eof673: cs = 673; goto _test_eof - _test_eof674: cs = 674; goto _test_eof - _test_eof675: cs = 675; goto _test_eof - _test_eof676: cs = 676; goto _test_eof - _test_eof677: cs = 677; goto _test_eof - _test_eof678: cs = 678; goto _test_eof - _test_eof679: cs = 679; goto _test_eof - _test_eof680: cs = 680; goto _test_eof - _test_eof681: cs = 681; goto _test_eof - _test_eof682: cs = 682; goto _test_eof - _test_eof683: cs = 683; goto _test_eof - _test_eof684: cs = 684; goto _test_eof - _test_eof685: cs = 685; goto _test_eof - _test_eof686: cs = 686; goto _test_eof - _test_eof687: cs = 687; goto _test_eof - _test_eof688: cs = 688; goto _test_eof - _test_eof689: cs = 689; goto _test_eof - _test_eof690: cs = 690; goto _test_eof - _test_eof691: cs = 691; goto _test_eof - _test_eof692: cs = 692; goto _test_eof - _test_eof693: cs = 693; goto _test_eof - _test_eof694: cs = 694; goto _test_eof - _test_eof695: cs = 695; goto _test_eof - _test_eof696: cs = 696; goto _test_eof - _test_eof697: cs = 697; goto _test_eof - _test_eof698: cs = 698; goto _test_eof - _test_eof699: cs = 699; goto _test_eof - _test_eof700: cs = 700; goto _test_eof - _test_eof701: cs = 701; goto _test_eof - _test_eof702: cs = 702; goto _test_eof - _test_eof703: cs = 703; goto _test_eof - _test_eof704: cs = 704; goto _test_eof - _test_eof705: cs = 705; goto _test_eof - _test_eof706: cs = 706; goto _test_eof - _test_eof707: cs = 707; goto _test_eof - _test_eof708: cs = 708; goto _test_eof - _test_eof709: cs = 709; goto _test_eof - _test_eof710: cs = 710; goto _test_eof - _test_eof711: cs = 711; goto _test_eof - _test_eof712: cs = 712; goto _test_eof - _test_eof713: cs = 713; goto _test_eof - _test_eof714: cs = 714; goto _test_eof - _test_eof715: cs = 715; goto _test_eof - _test_eof716: cs = 716; goto _test_eof - _test_eof717: cs = 717; goto _test_eof - _test_eof718: cs = 718; goto _test_eof - _test_eof719: cs = 719; goto _test_eof - _test_eof720: cs = 720; goto _test_eof - _test_eof721: cs = 721; goto _test_eof - _test_eof722: cs = 722; goto _test_eof - _test_eof723: cs = 723; goto _test_eof - _test_eof724: cs = 724; goto _test_eof - _test_eof725: cs = 725; goto _test_eof - _test_eof726: cs = 726; goto _test_eof - _test_eof727: cs = 727; goto _test_eof - _test_eof728: cs = 728; goto _test_eof - _test_eof729: cs = 729; goto _test_eof - _test_eof730: cs = 730; goto _test_eof - _test_eof731: cs = 731; goto _test_eof - _test_eof732: cs = 732; goto _test_eof - _test_eof733: cs = 733; goto _test_eof - _test_eof734: cs = 734; goto _test_eof - _test_eof735: cs = 735; goto _test_eof - _test_eof736: cs = 736; goto _test_eof - _test_eof737: cs = 737; goto _test_eof - _test_eof738: cs = 738; goto _test_eof - _test_eof739: cs = 739; goto _test_eof - _test_eof740: cs = 740; goto _test_eof - _test_eof741: cs = 741; goto _test_eof - _test_eof742: cs = 742; goto _test_eof - _test_eof743: cs = 743; goto _test_eof - _test_eof744: cs = 744; goto _test_eof - _test_eof745: cs = 745; goto _test_eof - _test_eof746: cs = 746; goto _test_eof - _test_eof747: cs = 747; goto _test_eof - _test_eof748: cs = 748; goto _test_eof - _test_eof749: cs = 749; goto _test_eof - _test_eof750: cs = 750; goto _test_eof - _test_eof751: cs = 751; goto _test_eof - _test_eof752: cs = 752; goto _test_eof - _test_eof753: cs = 753; goto _test_eof - _test_eof754: cs = 754; goto _test_eof - _test_eof755: cs = 755; goto _test_eof - _test_eof756: cs = 756; goto _test_eof - _test_eof757: cs = 757; goto _test_eof - _test_eof758: cs = 758; goto _test_eof - _test_eof759: cs = 759; goto _test_eof - _test_eof760: cs = 760; goto _test_eof - _test_eof761: cs = 761; goto _test_eof - _test_eof762: cs = 762; goto _test_eof - _test_eof763: cs = 763; goto _test_eof - _test_eof764: cs = 764; goto _test_eof - - _test_eof: {} - if p == eof { - switch cs { - case 281, 282, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 370, 371, 372, 373, 374, 375, 385, 386, 387, 388, 389, 390, 391, 392, 393, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 441, 442, 443, 444, 445, 446, 447, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763: -//line sip.rl:158 - - p-- - - {goto st273 } - - case 778: -//line sip.rl:201 - - *addrp = addr - addrp = &addr.Next - addr = nil - -//line msg_parse.go:17847 - } - } - - _out: {} - } - -//line msg_parse.rl:41 - - if cs < msg_first_final { - if p == pe { - return nil, MsgIncompleteError{data} - } else { - return nil, MsgParseError{Msg: data, Offset: p} - } - } - - if clen > 0 { - if clen != len(data) - p { - return nil, errors.New(fmt.Sprintf("Content-Length incorrect: %d != %d", clen, len(data) - p)) - } - if ctype == sdp.ContentType { - ms, err := sdp.Parse(string(data[p:len(data)])) - if err != nil { - return nil, err - } - msg.Payload = ms - } else { - msg.Payload = &MiscPayload{T: ctype, D: data[p:len(data)]} + _test_eof2: + cs = 2 + goto _test_eof + _test_eof3: + cs = 3 + goto _test_eof + _test_eof4: + cs = 4 + goto _test_eof + _test_eof5: + cs = 5 + goto _test_eof + _test_eof6: + cs = 6 + goto _test_eof + _test_eof7: + cs = 7 + goto _test_eof + _test_eof8: + cs = 8 + goto _test_eof + _test_eof9: + cs = 9 + goto _test_eof + _test_eof10: + cs = 10 + goto _test_eof + _test_eof11: + cs = 11 + goto _test_eof + _test_eof12: + cs = 12 + goto _test_eof + _test_eof13: + cs = 13 + goto _test_eof + _test_eof765: + cs = 765 + goto _test_eof + _test_eof14: + cs = 14 + goto _test_eof + _test_eof15: + cs = 15 + goto _test_eof + _test_eof16: + cs = 16 + goto _test_eof + _test_eof17: + cs = 17 + goto _test_eof + _test_eof18: + cs = 18 + goto _test_eof + _test_eof19: + cs = 19 + goto _test_eof + _test_eof20: + cs = 20 + goto _test_eof + _test_eof21: + cs = 21 + goto _test_eof + _test_eof22: + cs = 22 + goto _test_eof + _test_eof23: + cs = 23 + goto _test_eof + _test_eof24: + cs = 24 + goto _test_eof + _test_eof25: + cs = 25 + goto _test_eof + _test_eof26: + cs = 26 + goto _test_eof + _test_eof27: + cs = 27 + goto _test_eof + _test_eof28: + cs = 28 + goto _test_eof + _test_eof29: + cs = 29 + goto _test_eof + _test_eof30: + cs = 30 + goto _test_eof + _test_eof31: + cs = 31 + goto _test_eof + _test_eof32: + cs = 32 + goto _test_eof + _test_eof33: + cs = 33 + goto _test_eof + _test_eof34: + cs = 34 + goto _test_eof + _test_eof35: + cs = 35 + goto _test_eof + _test_eof36: + cs = 36 + goto _test_eof + _test_eof37: + cs = 37 + goto _test_eof + _test_eof38: + cs = 38 + goto _test_eof + _test_eof39: + cs = 39 + goto _test_eof + _test_eof40: + cs = 40 + goto _test_eof + _test_eof41: + cs = 41 + goto _test_eof + _test_eof42: + cs = 42 + goto _test_eof + _test_eof43: + cs = 43 + goto _test_eof + _test_eof44: + cs = 44 + goto _test_eof + _test_eof766: + cs = 766 + goto _test_eof + _test_eof45: + cs = 45 + goto _test_eof + _test_eof46: + cs = 46 + goto _test_eof + _test_eof47: + cs = 47 + goto _test_eof + _test_eof48: + cs = 48 + goto _test_eof + _test_eof49: + cs = 49 + goto _test_eof + _test_eof50: + cs = 50 + goto _test_eof + _test_eof51: + cs = 51 + goto _test_eof + _test_eof52: + cs = 52 + goto _test_eof + _test_eof53: + cs = 53 + goto _test_eof + _test_eof54: + cs = 54 + goto _test_eof + _test_eof55: + cs = 55 + goto _test_eof + _test_eof56: + cs = 56 + goto _test_eof + _test_eof57: + cs = 57 + goto _test_eof + _test_eof58: + cs = 58 + goto _test_eof + _test_eof59: + cs = 59 + goto _test_eof + _test_eof60: + cs = 60 + goto _test_eof + _test_eof61: + cs = 61 + goto _test_eof + _test_eof62: + cs = 62 + goto _test_eof + _test_eof63: + cs = 63 + goto _test_eof + _test_eof64: + cs = 64 + goto _test_eof + _test_eof65: + cs = 65 + goto _test_eof + _test_eof66: + cs = 66 + goto _test_eof + _test_eof67: + cs = 67 + goto _test_eof + _test_eof68: + cs = 68 + goto _test_eof + _test_eof69: + cs = 69 + goto _test_eof + _test_eof70: + cs = 70 + goto _test_eof + _test_eof71: + cs = 71 + goto _test_eof + _test_eof767: + cs = 767 + goto _test_eof + _test_eof72: + cs = 72 + goto _test_eof + _test_eof73: + cs = 73 + goto _test_eof + _test_eof74: + cs = 74 + goto _test_eof + _test_eof75: + cs = 75 + goto _test_eof + _test_eof76: + cs = 76 + goto _test_eof + _test_eof77: + cs = 77 + goto _test_eof + _test_eof78: + cs = 78 + goto _test_eof + _test_eof79: + cs = 79 + goto _test_eof + _test_eof80: + cs = 80 + goto _test_eof + _test_eof81: + cs = 81 + goto _test_eof + _test_eof82: + cs = 82 + goto _test_eof + _test_eof83: + cs = 83 + goto _test_eof + _test_eof84: + cs = 84 + goto _test_eof + _test_eof85: + cs = 85 + goto _test_eof + _test_eof86: + cs = 86 + goto _test_eof + _test_eof87: + cs = 87 + goto _test_eof + _test_eof88: + cs = 88 + goto _test_eof + _test_eof89: + cs = 89 + goto _test_eof + _test_eof90: + cs = 90 + goto _test_eof + _test_eof91: + cs = 91 + goto _test_eof + _test_eof92: + cs = 92 + goto _test_eof + _test_eof93: + cs = 93 + goto _test_eof + _test_eof94: + cs = 94 + goto _test_eof + _test_eof95: + cs = 95 + goto _test_eof + _test_eof96: + cs = 96 + goto _test_eof + _test_eof97: + cs = 97 + goto _test_eof + _test_eof98: + cs = 98 + goto _test_eof + _test_eof99: + cs = 99 + goto _test_eof + _test_eof100: + cs = 100 + goto _test_eof + _test_eof101: + cs = 101 + goto _test_eof + _test_eof102: + cs = 102 + goto _test_eof + _test_eof103: + cs = 103 + goto _test_eof + _test_eof104: + cs = 104 + goto _test_eof + _test_eof105: + cs = 105 + goto _test_eof + _test_eof106: + cs = 106 + goto _test_eof + _test_eof107: + cs = 107 + goto _test_eof + _test_eof108: + cs = 108 + goto _test_eof + _test_eof109: + cs = 109 + goto _test_eof + _test_eof110: + cs = 110 + goto _test_eof + _test_eof111: + cs = 111 + goto _test_eof + _test_eof112: + cs = 112 + goto _test_eof + _test_eof113: + cs = 113 + goto _test_eof + _test_eof114: + cs = 114 + goto _test_eof + _test_eof768: + cs = 768 + goto _test_eof + _test_eof115: + cs = 115 + goto _test_eof + _test_eof116: + cs = 116 + goto _test_eof + _test_eof117: + cs = 117 + goto _test_eof + _test_eof118: + cs = 118 + goto _test_eof + _test_eof119: + cs = 119 + goto _test_eof + _test_eof120: + cs = 120 + goto _test_eof + _test_eof121: + cs = 121 + goto _test_eof + _test_eof122: + cs = 122 + goto _test_eof + _test_eof123: + cs = 123 + goto _test_eof + _test_eof124: + cs = 124 + goto _test_eof + _test_eof125: + cs = 125 + goto _test_eof + _test_eof126: + cs = 126 + goto _test_eof + _test_eof127: + cs = 127 + goto _test_eof + _test_eof128: + cs = 128 + goto _test_eof + _test_eof129: + cs = 129 + goto _test_eof + _test_eof130: + cs = 130 + goto _test_eof + _test_eof131: + cs = 131 + goto _test_eof + _test_eof132: + cs = 132 + goto _test_eof + _test_eof133: + cs = 133 + goto _test_eof + _test_eof134: + cs = 134 + goto _test_eof + _test_eof135: + cs = 135 + goto _test_eof + _test_eof136: + cs = 136 + goto _test_eof + _test_eof137: + cs = 137 + goto _test_eof + _test_eof138: + cs = 138 + goto _test_eof + _test_eof139: + cs = 139 + goto _test_eof + _test_eof140: + cs = 140 + goto _test_eof + _test_eof141: + cs = 141 + goto _test_eof + _test_eof142: + cs = 142 + goto _test_eof + _test_eof143: + cs = 143 + goto _test_eof + _test_eof144: + cs = 144 + goto _test_eof + _test_eof145: + cs = 145 + goto _test_eof + _test_eof146: + cs = 146 + goto _test_eof + _test_eof147: + cs = 147 + goto _test_eof + _test_eof148: + cs = 148 + goto _test_eof + _test_eof149: + cs = 149 + goto _test_eof + _test_eof150: + cs = 150 + goto _test_eof + _test_eof151: + cs = 151 + goto _test_eof + _test_eof152: + cs = 152 + goto _test_eof + _test_eof153: + cs = 153 + goto _test_eof + _test_eof154: + cs = 154 + goto _test_eof + _test_eof155: + cs = 155 + goto _test_eof + _test_eof156: + cs = 156 + goto _test_eof + _test_eof769: + cs = 769 + goto _test_eof + _test_eof157: + cs = 157 + goto _test_eof + _test_eof158: + cs = 158 + goto _test_eof + _test_eof159: + cs = 159 + goto _test_eof + _test_eof160: + cs = 160 + goto _test_eof + _test_eof161: + cs = 161 + goto _test_eof + _test_eof162: + cs = 162 + goto _test_eof + _test_eof163: + cs = 163 + goto _test_eof + _test_eof164: + cs = 164 + goto _test_eof + _test_eof165: + cs = 165 + goto _test_eof + _test_eof166: + cs = 166 + goto _test_eof + _test_eof167: + cs = 167 + goto _test_eof + _test_eof168: + cs = 168 + goto _test_eof + _test_eof169: + cs = 169 + goto _test_eof + _test_eof170: + cs = 170 + goto _test_eof + _test_eof171: + cs = 171 + goto _test_eof + _test_eof172: + cs = 172 + goto _test_eof + _test_eof173: + cs = 173 + goto _test_eof + _test_eof174: + cs = 174 + goto _test_eof + _test_eof175: + cs = 175 + goto _test_eof + _test_eof176: + cs = 176 + goto _test_eof + _test_eof177: + cs = 177 + goto _test_eof + _test_eof178: + cs = 178 + goto _test_eof + _test_eof179: + cs = 179 + goto _test_eof + _test_eof180: + cs = 180 + goto _test_eof + _test_eof181: + cs = 181 + goto _test_eof + _test_eof182: + cs = 182 + goto _test_eof + _test_eof183: + cs = 183 + goto _test_eof + _test_eof184: + cs = 184 + goto _test_eof + _test_eof185: + cs = 185 + goto _test_eof + _test_eof186: + cs = 186 + goto _test_eof + _test_eof187: + cs = 187 + goto _test_eof + _test_eof188: + cs = 188 + goto _test_eof + _test_eof189: + cs = 189 + goto _test_eof + _test_eof190: + cs = 190 + goto _test_eof + _test_eof191: + cs = 191 + goto _test_eof + _test_eof192: + cs = 192 + goto _test_eof + _test_eof193: + cs = 193 + goto _test_eof + _test_eof194: + cs = 194 + goto _test_eof + _test_eof195: + cs = 195 + goto _test_eof + _test_eof770: + cs = 770 + goto _test_eof + _test_eof196: + cs = 196 + goto _test_eof + _test_eof197: + cs = 197 + goto _test_eof + _test_eof198: + cs = 198 + goto _test_eof + _test_eof199: + cs = 199 + goto _test_eof + _test_eof200: + cs = 200 + goto _test_eof + _test_eof201: + cs = 201 + goto _test_eof + _test_eof202: + cs = 202 + goto _test_eof + _test_eof203: + cs = 203 + goto _test_eof + _test_eof204: + cs = 204 + goto _test_eof + _test_eof205: + cs = 205 + goto _test_eof + _test_eof206: + cs = 206 + goto _test_eof + _test_eof207: + cs = 207 + goto _test_eof + _test_eof208: + cs = 208 + goto _test_eof + _test_eof209: + cs = 209 + goto _test_eof + _test_eof210: + cs = 210 + goto _test_eof + _test_eof211: + cs = 211 + goto _test_eof + _test_eof212: + cs = 212 + goto _test_eof + _test_eof213: + cs = 213 + goto _test_eof + _test_eof214: + cs = 214 + goto _test_eof + _test_eof215: + cs = 215 + goto _test_eof + _test_eof216: + cs = 216 + goto _test_eof + _test_eof217: + cs = 217 + goto _test_eof + _test_eof218: + cs = 218 + goto _test_eof + _test_eof219: + cs = 219 + goto _test_eof + _test_eof220: + cs = 220 + goto _test_eof + _test_eof221: + cs = 221 + goto _test_eof + _test_eof222: + cs = 222 + goto _test_eof + _test_eof223: + cs = 223 + goto _test_eof + _test_eof224: + cs = 224 + goto _test_eof + _test_eof225: + cs = 225 + goto _test_eof + _test_eof226: + cs = 226 + goto _test_eof + _test_eof227: + cs = 227 + goto _test_eof + _test_eof228: + cs = 228 + goto _test_eof + _test_eof229: + cs = 229 + goto _test_eof + _test_eof230: + cs = 230 + goto _test_eof + _test_eof231: + cs = 231 + goto _test_eof + _test_eof232: + cs = 232 + goto _test_eof + _test_eof233: + cs = 233 + goto _test_eof + _test_eof234: + cs = 234 + goto _test_eof + _test_eof771: + cs = 771 + goto _test_eof + _test_eof235: + cs = 235 + goto _test_eof + _test_eof236: + cs = 236 + goto _test_eof + _test_eof237: + cs = 237 + goto _test_eof + _test_eof238: + cs = 238 + goto _test_eof + _test_eof239: + cs = 239 + goto _test_eof + _test_eof240: + cs = 240 + goto _test_eof + _test_eof241: + cs = 241 + goto _test_eof + _test_eof242: + cs = 242 + goto _test_eof + _test_eof243: + cs = 243 + goto _test_eof + _test_eof244: + cs = 244 + goto _test_eof + _test_eof245: + cs = 245 + goto _test_eof + _test_eof246: + cs = 246 + goto _test_eof + _test_eof772: + cs = 772 + goto _test_eof + _test_eof247: + cs = 247 + goto _test_eof + _test_eof248: + cs = 248 + goto _test_eof + _test_eof249: + cs = 249 + goto _test_eof + _test_eof773: + cs = 773 + goto _test_eof + _test_eof250: + cs = 250 + goto _test_eof + _test_eof251: + cs = 251 + goto _test_eof + _test_eof774: + cs = 774 + goto _test_eof + _test_eof252: + cs = 252 + goto _test_eof + _test_eof253: + cs = 253 + goto _test_eof + _test_eof254: + cs = 254 + goto _test_eof + _test_eof775: + cs = 775 + goto _test_eof + _test_eof776: + cs = 776 + goto _test_eof + _test_eof777: + cs = 777 + goto _test_eof + _test_eof778: + cs = 778 + goto _test_eof + _test_eof255: + cs = 255 + goto _test_eof + _test_eof256: + cs = 256 + goto _test_eof + _test_eof257: + cs = 257 + goto _test_eof + _test_eof258: + cs = 258 + goto _test_eof + _test_eof779: + cs = 779 + goto _test_eof + _test_eof259: + cs = 259 + goto _test_eof + _test_eof260: + cs = 260 + goto _test_eof + _test_eof261: + cs = 261 + goto _test_eof + _test_eof262: + cs = 262 + goto _test_eof + _test_eof263: + cs = 263 + goto _test_eof + _test_eof264: + cs = 264 + goto _test_eof + _test_eof265: + cs = 265 + goto _test_eof + _test_eof266: + cs = 266 + goto _test_eof + _test_eof267: + cs = 267 + goto _test_eof + _test_eof268: + cs = 268 + goto _test_eof + _test_eof269: + cs = 269 + goto _test_eof + _test_eof270: + cs = 270 + goto _test_eof + _test_eof780: + cs = 780 + goto _test_eof + _test_eof271: + cs = 271 + goto _test_eof + _test_eof272: + cs = 272 + goto _test_eof + _test_eof273: + cs = 273 + goto _test_eof + _test_eof274: + cs = 274 + goto _test_eof + _test_eof275: + cs = 275 + goto _test_eof + _test_eof276: + cs = 276 + goto _test_eof + _test_eof781: + cs = 781 + goto _test_eof + _test_eof277: + cs = 277 + goto _test_eof + _test_eof278: + cs = 278 + goto _test_eof + _test_eof279: + cs = 279 + goto _test_eof + _test_eof280: + cs = 280 + goto _test_eof + _test_eof281: + cs = 281 + goto _test_eof + _test_eof282: + cs = 282 + goto _test_eof + _test_eof283: + cs = 283 + goto _test_eof + _test_eof284: + cs = 284 + goto _test_eof + _test_eof782: + cs = 782 + goto _test_eof + _test_eof285: + cs = 285 + goto _test_eof + _test_eof286: + cs = 286 + goto _test_eof + _test_eof287: + cs = 287 + goto _test_eof + _test_eof288: + cs = 288 + goto _test_eof + _test_eof289: + cs = 289 + goto _test_eof + _test_eof290: + cs = 290 + goto _test_eof + _test_eof291: + cs = 291 + goto _test_eof + _test_eof292: + cs = 292 + goto _test_eof + _test_eof293: + cs = 293 + goto _test_eof + _test_eof294: + cs = 294 + goto _test_eof + _test_eof295: + cs = 295 + goto _test_eof + _test_eof296: + cs = 296 + goto _test_eof + _test_eof297: + cs = 297 + goto _test_eof + _test_eof298: + cs = 298 + goto _test_eof + _test_eof299: + cs = 299 + goto _test_eof + _test_eof300: + cs = 300 + goto _test_eof + _test_eof301: + cs = 301 + goto _test_eof + _test_eof302: + cs = 302 + goto _test_eof + _test_eof303: + cs = 303 + goto _test_eof + _test_eof304: + cs = 304 + goto _test_eof + _test_eof305: + cs = 305 + goto _test_eof + _test_eof306: + cs = 306 + goto _test_eof + _test_eof307: + cs = 307 + goto _test_eof + _test_eof308: + cs = 308 + goto _test_eof + _test_eof309: + cs = 309 + goto _test_eof + _test_eof310: + cs = 310 + goto _test_eof + _test_eof311: + cs = 311 + goto _test_eof + _test_eof312: + cs = 312 + goto _test_eof + _test_eof313: + cs = 313 + goto _test_eof + _test_eof314: + cs = 314 + goto _test_eof + _test_eof315: + cs = 315 + goto _test_eof + _test_eof316: + cs = 316 + goto _test_eof + _test_eof317: + cs = 317 + goto _test_eof + _test_eof318: + cs = 318 + goto _test_eof + _test_eof319: + cs = 319 + goto _test_eof + _test_eof320: + cs = 320 + goto _test_eof + _test_eof321: + cs = 321 + goto _test_eof + _test_eof322: + cs = 322 + goto _test_eof + _test_eof323: + cs = 323 + goto _test_eof + _test_eof324: + cs = 324 + goto _test_eof + _test_eof325: + cs = 325 + goto _test_eof + _test_eof326: + cs = 326 + goto _test_eof + _test_eof327: + cs = 327 + goto _test_eof + _test_eof328: + cs = 328 + goto _test_eof + _test_eof329: + cs = 329 + goto _test_eof + _test_eof330: + cs = 330 + goto _test_eof + _test_eof331: + cs = 331 + goto _test_eof + _test_eof332: + cs = 332 + goto _test_eof + _test_eof333: + cs = 333 + goto _test_eof + _test_eof334: + cs = 334 + goto _test_eof + _test_eof335: + cs = 335 + goto _test_eof + _test_eof336: + cs = 336 + goto _test_eof + _test_eof337: + cs = 337 + goto _test_eof + _test_eof338: + cs = 338 + goto _test_eof + _test_eof339: + cs = 339 + goto _test_eof + _test_eof340: + cs = 340 + goto _test_eof + _test_eof341: + cs = 341 + goto _test_eof + _test_eof342: + cs = 342 + goto _test_eof + _test_eof343: + cs = 343 + goto _test_eof + _test_eof344: + cs = 344 + goto _test_eof + _test_eof345: + cs = 345 + goto _test_eof + _test_eof346: + cs = 346 + goto _test_eof + _test_eof347: + cs = 347 + goto _test_eof + _test_eof348: + cs = 348 + goto _test_eof + _test_eof349: + cs = 349 + goto _test_eof + _test_eof350: + cs = 350 + goto _test_eof + _test_eof351: + cs = 351 + goto _test_eof + _test_eof352: + cs = 352 + goto _test_eof + _test_eof353: + cs = 353 + goto _test_eof + _test_eof354: + cs = 354 + goto _test_eof + _test_eof355: + cs = 355 + goto _test_eof + _test_eof356: + cs = 356 + goto _test_eof + _test_eof357: + cs = 357 + goto _test_eof + _test_eof358: + cs = 358 + goto _test_eof + _test_eof359: + cs = 359 + goto _test_eof + _test_eof360: + cs = 360 + goto _test_eof + _test_eof361: + cs = 361 + goto _test_eof + _test_eof362: + cs = 362 + goto _test_eof + _test_eof363: + cs = 363 + goto _test_eof + _test_eof364: + cs = 364 + goto _test_eof + _test_eof365: + cs = 365 + goto _test_eof + _test_eof366: + cs = 366 + goto _test_eof + _test_eof367: + cs = 367 + goto _test_eof + _test_eof368: + cs = 368 + goto _test_eof + _test_eof369: + cs = 369 + goto _test_eof + _test_eof370: + cs = 370 + goto _test_eof + _test_eof371: + cs = 371 + goto _test_eof + _test_eof372: + cs = 372 + goto _test_eof + _test_eof373: + cs = 373 + goto _test_eof + _test_eof374: + cs = 374 + goto _test_eof + _test_eof375: + cs = 375 + goto _test_eof + _test_eof376: + cs = 376 + goto _test_eof + _test_eof377: + cs = 377 + goto _test_eof + _test_eof378: + cs = 378 + goto _test_eof + _test_eof379: + cs = 379 + goto _test_eof + _test_eof380: + cs = 380 + goto _test_eof + _test_eof381: + cs = 381 + goto _test_eof + _test_eof382: + cs = 382 + goto _test_eof + _test_eof383: + cs = 383 + goto _test_eof + _test_eof384: + cs = 384 + goto _test_eof + _test_eof385: + cs = 385 + goto _test_eof + _test_eof386: + cs = 386 + goto _test_eof + _test_eof387: + cs = 387 + goto _test_eof + _test_eof388: + cs = 388 + goto _test_eof + _test_eof389: + cs = 389 + goto _test_eof + _test_eof390: + cs = 390 + goto _test_eof + _test_eof391: + cs = 391 + goto _test_eof + _test_eof392: + cs = 392 + goto _test_eof + _test_eof393: + cs = 393 + goto _test_eof + _test_eof394: + cs = 394 + goto _test_eof + _test_eof395: + cs = 395 + goto _test_eof + _test_eof396: + cs = 396 + goto _test_eof + _test_eof397: + cs = 397 + goto _test_eof + _test_eof398: + cs = 398 + goto _test_eof + _test_eof399: + cs = 399 + goto _test_eof + _test_eof400: + cs = 400 + goto _test_eof + _test_eof401: + cs = 401 + goto _test_eof + _test_eof402: + cs = 402 + goto _test_eof + _test_eof403: + cs = 403 + goto _test_eof + _test_eof404: + cs = 404 + goto _test_eof + _test_eof405: + cs = 405 + goto _test_eof + _test_eof406: + cs = 406 + goto _test_eof + _test_eof407: + cs = 407 + goto _test_eof + _test_eof408: + cs = 408 + goto _test_eof + _test_eof409: + cs = 409 + goto _test_eof + _test_eof410: + cs = 410 + goto _test_eof + _test_eof411: + cs = 411 + goto _test_eof + _test_eof412: + cs = 412 + goto _test_eof + _test_eof413: + cs = 413 + goto _test_eof + _test_eof414: + cs = 414 + goto _test_eof + _test_eof415: + cs = 415 + goto _test_eof + _test_eof416: + cs = 416 + goto _test_eof + _test_eof417: + cs = 417 + goto _test_eof + _test_eof418: + cs = 418 + goto _test_eof + _test_eof419: + cs = 419 + goto _test_eof + _test_eof420: + cs = 420 + goto _test_eof + _test_eof421: + cs = 421 + goto _test_eof + _test_eof422: + cs = 422 + goto _test_eof + _test_eof423: + cs = 423 + goto _test_eof + _test_eof424: + cs = 424 + goto _test_eof + _test_eof425: + cs = 425 + goto _test_eof + _test_eof426: + cs = 426 + goto _test_eof + _test_eof427: + cs = 427 + goto _test_eof + _test_eof428: + cs = 428 + goto _test_eof + _test_eof429: + cs = 429 + goto _test_eof + _test_eof430: + cs = 430 + goto _test_eof + _test_eof431: + cs = 431 + goto _test_eof + _test_eof432: + cs = 432 + goto _test_eof + _test_eof433: + cs = 433 + goto _test_eof + _test_eof434: + cs = 434 + goto _test_eof + _test_eof435: + cs = 435 + goto _test_eof + _test_eof436: + cs = 436 + goto _test_eof + _test_eof437: + cs = 437 + goto _test_eof + _test_eof438: + cs = 438 + goto _test_eof + _test_eof439: + cs = 439 + goto _test_eof + _test_eof440: + cs = 440 + goto _test_eof + _test_eof441: + cs = 441 + goto _test_eof + _test_eof442: + cs = 442 + goto _test_eof + _test_eof443: + cs = 443 + goto _test_eof + _test_eof444: + cs = 444 + goto _test_eof + _test_eof445: + cs = 445 + goto _test_eof + _test_eof446: + cs = 446 + goto _test_eof + _test_eof447: + cs = 447 + goto _test_eof + _test_eof448: + cs = 448 + goto _test_eof + _test_eof449: + cs = 449 + goto _test_eof + _test_eof450: + cs = 450 + goto _test_eof + _test_eof451: + cs = 451 + goto _test_eof + _test_eof452: + cs = 452 + goto _test_eof + _test_eof453: + cs = 453 + goto _test_eof + _test_eof454: + cs = 454 + goto _test_eof + _test_eof455: + cs = 455 + goto _test_eof + _test_eof456: + cs = 456 + goto _test_eof + _test_eof457: + cs = 457 + goto _test_eof + _test_eof458: + cs = 458 + goto _test_eof + _test_eof459: + cs = 459 + goto _test_eof + _test_eof460: + cs = 460 + goto _test_eof + _test_eof461: + cs = 461 + goto _test_eof + _test_eof462: + cs = 462 + goto _test_eof + _test_eof463: + cs = 463 + goto _test_eof + _test_eof464: + cs = 464 + goto _test_eof + _test_eof465: + cs = 465 + goto _test_eof + _test_eof466: + cs = 466 + goto _test_eof + _test_eof467: + cs = 467 + goto _test_eof + _test_eof468: + cs = 468 + goto _test_eof + _test_eof469: + cs = 469 + goto _test_eof + _test_eof470: + cs = 470 + goto _test_eof + _test_eof471: + cs = 471 + goto _test_eof + _test_eof472: + cs = 472 + goto _test_eof + _test_eof473: + cs = 473 + goto _test_eof + _test_eof474: + cs = 474 + goto _test_eof + _test_eof475: + cs = 475 + goto _test_eof + _test_eof476: + cs = 476 + goto _test_eof + _test_eof477: + cs = 477 + goto _test_eof + _test_eof478: + cs = 478 + goto _test_eof + _test_eof479: + cs = 479 + goto _test_eof + _test_eof480: + cs = 480 + goto _test_eof + _test_eof481: + cs = 481 + goto _test_eof + _test_eof482: + cs = 482 + goto _test_eof + _test_eof483: + cs = 483 + goto _test_eof + _test_eof484: + cs = 484 + goto _test_eof + _test_eof485: + cs = 485 + goto _test_eof + _test_eof486: + cs = 486 + goto _test_eof + _test_eof487: + cs = 487 + goto _test_eof + _test_eof488: + cs = 488 + goto _test_eof + _test_eof489: + cs = 489 + goto _test_eof + _test_eof490: + cs = 490 + goto _test_eof + _test_eof491: + cs = 491 + goto _test_eof + _test_eof492: + cs = 492 + goto _test_eof + _test_eof493: + cs = 493 + goto _test_eof + _test_eof494: + cs = 494 + goto _test_eof + _test_eof495: + cs = 495 + goto _test_eof + _test_eof496: + cs = 496 + goto _test_eof + _test_eof497: + cs = 497 + goto _test_eof + _test_eof498: + cs = 498 + goto _test_eof + _test_eof499: + cs = 499 + goto _test_eof + _test_eof500: + cs = 500 + goto _test_eof + _test_eof501: + cs = 501 + goto _test_eof + _test_eof502: + cs = 502 + goto _test_eof + _test_eof503: + cs = 503 + goto _test_eof + _test_eof504: + cs = 504 + goto _test_eof + _test_eof505: + cs = 505 + goto _test_eof + _test_eof506: + cs = 506 + goto _test_eof + _test_eof507: + cs = 507 + goto _test_eof + _test_eof508: + cs = 508 + goto _test_eof + _test_eof509: + cs = 509 + goto _test_eof + _test_eof510: + cs = 510 + goto _test_eof + _test_eof511: + cs = 511 + goto _test_eof + _test_eof512: + cs = 512 + goto _test_eof + _test_eof513: + cs = 513 + goto _test_eof + _test_eof514: + cs = 514 + goto _test_eof + _test_eof515: + cs = 515 + goto _test_eof + _test_eof516: + cs = 516 + goto _test_eof + _test_eof517: + cs = 517 + goto _test_eof + _test_eof518: + cs = 518 + goto _test_eof + _test_eof519: + cs = 519 + goto _test_eof + _test_eof520: + cs = 520 + goto _test_eof + _test_eof521: + cs = 521 + goto _test_eof + _test_eof522: + cs = 522 + goto _test_eof + _test_eof523: + cs = 523 + goto _test_eof + _test_eof524: + cs = 524 + goto _test_eof + _test_eof525: + cs = 525 + goto _test_eof + _test_eof526: + cs = 526 + goto _test_eof + _test_eof527: + cs = 527 + goto _test_eof + _test_eof528: + cs = 528 + goto _test_eof + _test_eof529: + cs = 529 + goto _test_eof + _test_eof530: + cs = 530 + goto _test_eof + _test_eof531: + cs = 531 + goto _test_eof + _test_eof532: + cs = 532 + goto _test_eof + _test_eof533: + cs = 533 + goto _test_eof + _test_eof534: + cs = 534 + goto _test_eof + _test_eof535: + cs = 535 + goto _test_eof + _test_eof536: + cs = 536 + goto _test_eof + _test_eof537: + cs = 537 + goto _test_eof + _test_eof538: + cs = 538 + goto _test_eof + _test_eof539: + cs = 539 + goto _test_eof + _test_eof540: + cs = 540 + goto _test_eof + _test_eof541: + cs = 541 + goto _test_eof + _test_eof542: + cs = 542 + goto _test_eof + _test_eof543: + cs = 543 + goto _test_eof + _test_eof544: + cs = 544 + goto _test_eof + _test_eof545: + cs = 545 + goto _test_eof + _test_eof546: + cs = 546 + goto _test_eof + _test_eof547: + cs = 547 + goto _test_eof + _test_eof548: + cs = 548 + goto _test_eof + _test_eof549: + cs = 549 + goto _test_eof + _test_eof550: + cs = 550 + goto _test_eof + _test_eof551: + cs = 551 + goto _test_eof + _test_eof552: + cs = 552 + goto _test_eof + _test_eof553: + cs = 553 + goto _test_eof + _test_eof554: + cs = 554 + goto _test_eof + _test_eof555: + cs = 555 + goto _test_eof + _test_eof556: + cs = 556 + goto _test_eof + _test_eof557: + cs = 557 + goto _test_eof + _test_eof558: + cs = 558 + goto _test_eof + _test_eof559: + cs = 559 + goto _test_eof + _test_eof560: + cs = 560 + goto _test_eof + _test_eof561: + cs = 561 + goto _test_eof + _test_eof562: + cs = 562 + goto _test_eof + _test_eof563: + cs = 563 + goto _test_eof + _test_eof564: + cs = 564 + goto _test_eof + _test_eof565: + cs = 565 + goto _test_eof + _test_eof566: + cs = 566 + goto _test_eof + _test_eof567: + cs = 567 + goto _test_eof + _test_eof568: + cs = 568 + goto _test_eof + _test_eof569: + cs = 569 + goto _test_eof + _test_eof570: + cs = 570 + goto _test_eof + _test_eof571: + cs = 571 + goto _test_eof + _test_eof572: + cs = 572 + goto _test_eof + _test_eof573: + cs = 573 + goto _test_eof + _test_eof574: + cs = 574 + goto _test_eof + _test_eof575: + cs = 575 + goto _test_eof + _test_eof576: + cs = 576 + goto _test_eof + _test_eof577: + cs = 577 + goto _test_eof + _test_eof578: + cs = 578 + goto _test_eof + _test_eof579: + cs = 579 + goto _test_eof + _test_eof580: + cs = 580 + goto _test_eof + _test_eof581: + cs = 581 + goto _test_eof + _test_eof582: + cs = 582 + goto _test_eof + _test_eof583: + cs = 583 + goto _test_eof + _test_eof584: + cs = 584 + goto _test_eof + _test_eof585: + cs = 585 + goto _test_eof + _test_eof586: + cs = 586 + goto _test_eof + _test_eof587: + cs = 587 + goto _test_eof + _test_eof588: + cs = 588 + goto _test_eof + _test_eof589: + cs = 589 + goto _test_eof + _test_eof590: + cs = 590 + goto _test_eof + _test_eof591: + cs = 591 + goto _test_eof + _test_eof592: + cs = 592 + goto _test_eof + _test_eof593: + cs = 593 + goto _test_eof + _test_eof594: + cs = 594 + goto _test_eof + _test_eof595: + cs = 595 + goto _test_eof + _test_eof596: + cs = 596 + goto _test_eof + _test_eof597: + cs = 597 + goto _test_eof + _test_eof598: + cs = 598 + goto _test_eof + _test_eof599: + cs = 599 + goto _test_eof + _test_eof600: + cs = 600 + goto _test_eof + _test_eof601: + cs = 601 + goto _test_eof + _test_eof602: + cs = 602 + goto _test_eof + _test_eof603: + cs = 603 + goto _test_eof + _test_eof604: + cs = 604 + goto _test_eof + _test_eof605: + cs = 605 + goto _test_eof + _test_eof606: + cs = 606 + goto _test_eof + _test_eof607: + cs = 607 + goto _test_eof + _test_eof608: + cs = 608 + goto _test_eof + _test_eof609: + cs = 609 + goto _test_eof + _test_eof610: + cs = 610 + goto _test_eof + _test_eof611: + cs = 611 + goto _test_eof + _test_eof612: + cs = 612 + goto _test_eof + _test_eof613: + cs = 613 + goto _test_eof + _test_eof614: + cs = 614 + goto _test_eof + _test_eof615: + cs = 615 + goto _test_eof + _test_eof616: + cs = 616 + goto _test_eof + _test_eof617: + cs = 617 + goto _test_eof + _test_eof618: + cs = 618 + goto _test_eof + _test_eof619: + cs = 619 + goto _test_eof + _test_eof620: + cs = 620 + goto _test_eof + _test_eof621: + cs = 621 + goto _test_eof + _test_eof622: + cs = 622 + goto _test_eof + _test_eof623: + cs = 623 + goto _test_eof + _test_eof624: + cs = 624 + goto _test_eof + _test_eof625: + cs = 625 + goto _test_eof + _test_eof626: + cs = 626 + goto _test_eof + _test_eof627: + cs = 627 + goto _test_eof + _test_eof628: + cs = 628 + goto _test_eof + _test_eof629: + cs = 629 + goto _test_eof + _test_eof630: + cs = 630 + goto _test_eof + _test_eof631: + cs = 631 + goto _test_eof + _test_eof632: + cs = 632 + goto _test_eof + _test_eof633: + cs = 633 + goto _test_eof + _test_eof634: + cs = 634 + goto _test_eof + _test_eof635: + cs = 635 + goto _test_eof + _test_eof636: + cs = 636 + goto _test_eof + _test_eof637: + cs = 637 + goto _test_eof + _test_eof638: + cs = 638 + goto _test_eof + _test_eof639: + cs = 639 + goto _test_eof + _test_eof640: + cs = 640 + goto _test_eof + _test_eof641: + cs = 641 + goto _test_eof + _test_eof642: + cs = 642 + goto _test_eof + _test_eof643: + cs = 643 + goto _test_eof + _test_eof644: + cs = 644 + goto _test_eof + _test_eof645: + cs = 645 + goto _test_eof + _test_eof646: + cs = 646 + goto _test_eof + _test_eof647: + cs = 647 + goto _test_eof + _test_eof648: + cs = 648 + goto _test_eof + _test_eof649: + cs = 649 + goto _test_eof + _test_eof650: + cs = 650 + goto _test_eof + _test_eof651: + cs = 651 + goto _test_eof + _test_eof652: + cs = 652 + goto _test_eof + _test_eof653: + cs = 653 + goto _test_eof + _test_eof654: + cs = 654 + goto _test_eof + _test_eof655: + cs = 655 + goto _test_eof + _test_eof656: + cs = 656 + goto _test_eof + _test_eof657: + cs = 657 + goto _test_eof + _test_eof658: + cs = 658 + goto _test_eof + _test_eof659: + cs = 659 + goto _test_eof + _test_eof660: + cs = 660 + goto _test_eof + _test_eof661: + cs = 661 + goto _test_eof + _test_eof662: + cs = 662 + goto _test_eof + _test_eof663: + cs = 663 + goto _test_eof + _test_eof664: + cs = 664 + goto _test_eof + _test_eof665: + cs = 665 + goto _test_eof + _test_eof666: + cs = 666 + goto _test_eof + _test_eof667: + cs = 667 + goto _test_eof + _test_eof668: + cs = 668 + goto _test_eof + _test_eof669: + cs = 669 + goto _test_eof + _test_eof670: + cs = 670 + goto _test_eof + _test_eof671: + cs = 671 + goto _test_eof + _test_eof672: + cs = 672 + goto _test_eof + _test_eof673: + cs = 673 + goto _test_eof + _test_eof674: + cs = 674 + goto _test_eof + _test_eof675: + cs = 675 + goto _test_eof + _test_eof676: + cs = 676 + goto _test_eof + _test_eof677: + cs = 677 + goto _test_eof + _test_eof678: + cs = 678 + goto _test_eof + _test_eof679: + cs = 679 + goto _test_eof + _test_eof680: + cs = 680 + goto _test_eof + _test_eof681: + cs = 681 + goto _test_eof + _test_eof682: + cs = 682 + goto _test_eof + _test_eof683: + cs = 683 + goto _test_eof + _test_eof684: + cs = 684 + goto _test_eof + _test_eof685: + cs = 685 + goto _test_eof + _test_eof686: + cs = 686 + goto _test_eof + _test_eof687: + cs = 687 + goto _test_eof + _test_eof688: + cs = 688 + goto _test_eof + _test_eof689: + cs = 689 + goto _test_eof + _test_eof690: + cs = 690 + goto _test_eof + _test_eof691: + cs = 691 + goto _test_eof + _test_eof692: + cs = 692 + goto _test_eof + _test_eof693: + cs = 693 + goto _test_eof + _test_eof694: + cs = 694 + goto _test_eof + _test_eof695: + cs = 695 + goto _test_eof + _test_eof696: + cs = 696 + goto _test_eof + _test_eof697: + cs = 697 + goto _test_eof + _test_eof698: + cs = 698 + goto _test_eof + _test_eof699: + cs = 699 + goto _test_eof + _test_eof700: + cs = 700 + goto _test_eof + _test_eof701: + cs = 701 + goto _test_eof + _test_eof702: + cs = 702 + goto _test_eof + _test_eof703: + cs = 703 + goto _test_eof + _test_eof704: + cs = 704 + goto _test_eof + _test_eof705: + cs = 705 + goto _test_eof + _test_eof706: + cs = 706 + goto _test_eof + _test_eof707: + cs = 707 + goto _test_eof + _test_eof708: + cs = 708 + goto _test_eof + _test_eof709: + cs = 709 + goto _test_eof + _test_eof710: + cs = 710 + goto _test_eof + _test_eof711: + cs = 711 + goto _test_eof + _test_eof712: + cs = 712 + goto _test_eof + _test_eof713: + cs = 713 + goto _test_eof + _test_eof714: + cs = 714 + goto _test_eof + _test_eof715: + cs = 715 + goto _test_eof + _test_eof716: + cs = 716 + goto _test_eof + _test_eof717: + cs = 717 + goto _test_eof + _test_eof718: + cs = 718 + goto _test_eof + _test_eof719: + cs = 719 + goto _test_eof + _test_eof720: + cs = 720 + goto _test_eof + _test_eof721: + cs = 721 + goto _test_eof + _test_eof722: + cs = 722 + goto _test_eof + _test_eof723: + cs = 723 + goto _test_eof + _test_eof724: + cs = 724 + goto _test_eof + _test_eof725: + cs = 725 + goto _test_eof + _test_eof726: + cs = 726 + goto _test_eof + _test_eof727: + cs = 727 + goto _test_eof + _test_eof728: + cs = 728 + goto _test_eof + _test_eof729: + cs = 729 + goto _test_eof + _test_eof730: + cs = 730 + goto _test_eof + _test_eof731: + cs = 731 + goto _test_eof + _test_eof732: + cs = 732 + goto _test_eof + _test_eof733: + cs = 733 + goto _test_eof + _test_eof734: + cs = 734 + goto _test_eof + _test_eof735: + cs = 735 + goto _test_eof + _test_eof736: + cs = 736 + goto _test_eof + _test_eof737: + cs = 737 + goto _test_eof + _test_eof738: + cs = 738 + goto _test_eof + _test_eof739: + cs = 739 + goto _test_eof + _test_eof740: + cs = 740 + goto _test_eof + _test_eof741: + cs = 741 + goto _test_eof + _test_eof742: + cs = 742 + goto _test_eof + _test_eof743: + cs = 743 + goto _test_eof + _test_eof744: + cs = 744 + goto _test_eof + _test_eof745: + cs = 745 + goto _test_eof + _test_eof746: + cs = 746 + goto _test_eof + _test_eof747: + cs = 747 + goto _test_eof + _test_eof748: + cs = 748 + goto _test_eof + _test_eof749: + cs = 749 + goto _test_eof + _test_eof750: + cs = 750 + goto _test_eof + _test_eof751: + cs = 751 + goto _test_eof + _test_eof752: + cs = 752 + goto _test_eof + _test_eof753: + cs = 753 + goto _test_eof + _test_eof754: + cs = 754 + goto _test_eof + _test_eof755: + cs = 755 + goto _test_eof + _test_eof756: + cs = 756 + goto _test_eof + _test_eof757: + cs = 757 + goto _test_eof + _test_eof758: + cs = 758 + goto _test_eof + _test_eof759: + cs = 759 + goto _test_eof + _test_eof760: + cs = 760 + goto _test_eof + _test_eof761: + cs = 761 + goto _test_eof + _test_eof762: + cs = 762 + goto _test_eof + _test_eof763: + cs = 763 + goto _test_eof + _test_eof764: + cs = 764 + goto _test_eof + + _test_eof: + { + } + if p == eof { + switch cs { + case 281, 282, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 370, 371, 372, 373, 374, 375, 385, 386, 387, 388, 389, 390, 391, 392, 393, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 441, 442, 443, 444, 445, 446, 447, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763: +//line sip.rl:158 + + p-- + + { + goto st273 + } + + case 778: +//line sip.rl:201 + + *addrp = addr + addrp = &addr.Next + addr = nil + +//line msg_parse.go:17847 + } + } + + _out: + { + } + } + +//line msg_parse.rl:41 + + if cs < msg_first_final { + if p == pe { + return nil, MsgIncompleteError{data} + } else { + return nil, MsgParseError{Msg: data, Offset: p} + } + } + + if clen > 0 { + if clen != len(data)-p { + return nil, fmt.Errorf("Content-Length incorrect: %d != %d", clen, len(data)-p) } + msg.Payload = &MiscPayload{T: ctype, D: data[p:]} } return msg, nil } func lookAheadWSP(data []byte, p, pe int) bool { - return p + 2 < pe && (data[p+2] == ' ' || data[p+2] == '\t') + return p+2 < pe && (data[p+2] == ' ' || data[p+2] == '\t') } func lastAddr(addrp **Addr) **Addr { diff --git a/sip/msg_parse.rl b/sip/msg_parse.rl index 123e941..0c02b09 100644 --- a/sip/msg_parse.rl +++ b/sip/msg_parse.rl @@ -64,15 +64,7 @@ func ParseMsg(data []byte) (msg *Msg, err error) { if clen != len(data) - p { return nil, errors.New(fmt.Sprintf("Content-Length incorrect: %d != %d", clen, len(data) - p)) } - if ctype == sdp.ContentType { - ms, err := sdp.Parse(string(data[p:len(data)])) - if err != nil { - return nil, err - } - msg.Payload = ms - } else { - msg.Payload = &MiscPayload{T: ctype, D: data[p:len(data)]} - } + msg.Payload = &MiscPayload{T: ctype, D: data[p:len(data)]} } return msg, nil } diff --git a/sip/msg_test.go b/sip/msg_test.go index 0885316..b739ee6 100755 --- a/sip/msg_test.go +++ b/sip/msg_test.go @@ -18,7 +18,7 @@ import ( "reflect" "testing" - "github.com/jart/gosip/sip" + "github.com/cresta/gosip/sip" ) const ( diff --git a/sip/uri.go b/sip/uri.go index 126a869..5d95c43 100755 --- a/sip/uri.go +++ b/sip/uri.go @@ -37,7 +37,7 @@ package sip import ( "bytes" - "github.com/jart/gosip/util" + "github.com/cresta/gosip/util" ) const ( diff --git a/sip/uri_test.go b/sip/uri_test.go index d62372f..dade2a1 100755 --- a/sip/uri_test.go +++ b/sip/uri_test.go @@ -19,7 +19,7 @@ import ( "reflect" "testing" - "github.com/jart/gosip/sip" + "github.com/cresta/gosip/sip" ) type uriTest struct { diff --git a/sip/via.go b/sip/via.go index 231ef9b..ff2638a 100755 --- a/sip/via.go +++ b/sip/via.go @@ -20,7 +20,7 @@ import ( "bytes" "strconv" - "github.com/jart/gosip/util" + "github.com/cresta/gosip/util" ) // Example: SIP/2.0/UDP 1.2.3.4:5060;branch=z9hG4bK556f77e6.