diff --git a/rfc5424/builder.go b/rfc5424/builder.go index 4aa3baa..2f4168f 100644 --- a/rfc5424/builder.go +++ b/rfc5424/builder.go @@ -1,1321 +1,1338 @@ + +//line rfc5424/builder.go.rl:1 package rfc5424 import ( - "fmt" - "sort" - "time" + "time" + "sort" + "fmt" - "github.com/influxdata/go-syslog/v3/common" + "github.com/influxdata/go-syslog/v3/common" ) // todo(leodido) > support best effort for builder ? -const builderStart int = 52 -const builderEnTimestamp int = 1 -const builderEnHostname int = 38 -const builderEnAppname int = 39 -const builderEnProcid int = 40 -const builderEnMsgid int = 41 -const builderEnSdid int = 42 -const builderEnSdpn int = 43 -const builderEnSdpv int = 582 -const builderEnMsg int = 52 +//line rfc5424/builder.go:17 +const builder_start int = 52 + +const builder_en_timestamp int = 1 +const builder_en_hostname int = 38 +const builder_en_appname int = 39 +const builder_en_procid int = 40 +const builder_en_msgid int = 41 +const builder_en_sdid int = 42 +const builder_en_sdpn int = 43 +const builder_en_sdpv int = 582 +const builder_en_msg int = 52 + + +//line rfc5424/builder.go.rl:113 + + +const emptyString string = "" type entrypoint int const ( - timestamp entrypoint = iota - hostname - appname - procid - msgid - sdid - sdpn - sdpv - msg + timestamp entrypoint = iota + hostname + appname + procid + msgid + sdid + sdpn + sdpv + msg ) func (e entrypoint) translate() int { - switch e { - case timestamp: - return builderEnTimestamp - case hostname: - return builderEnHostname - case appname: - return builderEnAppname - case procid: - return builderEnProcid - case msgid: - return builderEnMsgid - case sdid: - return builderEnSdid - case sdpn: - return builderEnSdpn - case sdpv: - return builderEnSdpv - case msg: - return builderEnMsg - default: - return builderStart - } + switch e { + case timestamp: + return builder_en_timestamp + case hostname: + return builder_en_hostname + case appname: + return builder_en_appname + case procid: + return builder_en_procid + case msgid: + return builder_en_msgid + case sdid: + return builder_en_sdid + case sdpn: + return builder_en_sdpn + case sdpv: + return builder_en_sdpv + case msg: + return builder_en_msg + default: + return builder_start + } } -var currentid string -var currentparamname string - func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { - data := []byte(value) - p := 0 - pb := 0 - pe := len(data) - eof := len(data) - cs := from.translate() - backslashes := []int{} + return sm.setWithOptions(from, value, emptyString, emptyString) +} +// currentid and currentparamname are optional +func (sm *SyslogMessage) setWithOptions(from entrypoint, value string, currentid string, currentparamname string) *SyslogMessage { + data := []byte(value) + p := 0 + pb := 0 + pe := len(data) + eof := len(data) + cs := from.translate() + backslashes := []int{} + +//line rfc5424/builder.go:89 { - if p == pe { - goto _testEof - } - switch cs { - case 52: - goto stCase52 - case 53: - goto stCase53 - case 1: - goto stCase1 - case 0: - goto stCase0 - case 2: - goto stCase2 - case 3: - goto stCase3 - case 4: - goto stCase4 - case 5: - goto stCase5 - case 6: - goto stCase6 - case 7: - goto stCase7 - case 8: - goto stCase8 - case 9: - goto stCase9 - case 10: - goto stCase10 - case 11: - goto stCase11 - case 12: - goto stCase12 - case 13: - goto stCase13 - case 14: - goto stCase14 - case 15: - goto stCase15 - case 16: - goto stCase16 - case 17: - goto stCase17 - case 18: - goto stCase18 - case 19: - goto stCase19 - case 20: - goto stCase20 - case 21: - goto stCase21 - case 22: - goto stCase22 - case 23: - goto stCase23 - case 24: - goto stCase24 - case 25: - goto stCase25 - case 54: - goto stCase54 - case 26: - goto stCase26 - case 27: - goto stCase27 - case 28: - goto stCase28 - case 29: - goto stCase29 - case 30: - goto stCase30 - case 31: - goto stCase31 - case 32: - goto stCase32 - case 33: - goto stCase33 - case 34: - goto stCase34 - case 35: - goto stCase35 - case 36: - goto stCase36 - case 37: - goto stCase37 - case 38: - goto stCase38 - case 55: - goto stCase55 - case 56: - goto stCase56 - case 57: - goto stCase57 - case 58: - goto stCase58 - case 59: - goto stCase59 - case 60: - goto stCase60 - case 61: - goto stCase61 - case 62: - goto stCase62 - case 63: - goto stCase63 - case 64: - goto stCase64 - case 65: - goto stCase65 - case 66: - goto stCase66 - case 67: - goto stCase67 - case 68: - goto stCase68 - case 69: - goto stCase69 - case 70: - goto stCase70 - case 71: - goto stCase71 - case 72: - goto stCase72 - case 73: - goto stCase73 - case 74: - goto stCase74 - case 75: - goto stCase75 - case 76: - goto stCase76 - case 77: - goto stCase77 - case 78: - goto stCase78 - case 79: - goto stCase79 - case 80: - goto stCase80 - case 81: - goto stCase81 - case 82: - goto stCase82 - case 83: - goto stCase83 - case 84: - goto stCase84 - case 85: - goto stCase85 - case 86: - goto stCase86 - case 87: - goto stCase87 - case 88: - goto stCase88 - case 89: - goto stCase89 - case 90: - goto stCase90 - case 91: - goto stCase91 - case 92: - goto stCase92 - case 93: - goto stCase93 - case 94: - goto stCase94 - case 95: - goto stCase95 - case 96: - goto stCase96 - case 97: - goto stCase97 - case 98: - goto stCase98 - case 99: - goto stCase99 - case 100: - goto stCase100 - case 101: - goto stCase101 - case 102: - goto stCase102 - case 103: - goto stCase103 - case 104: - goto stCase104 - case 105: - goto stCase105 - case 106: - goto stCase106 - case 107: - goto stCase107 - case 108: - goto stCase108 - case 109: - goto stCase109 - case 110: - goto stCase110 - case 111: - goto stCase111 - case 112: - goto stCase112 - case 113: - goto stCase113 - case 114: - goto stCase114 - case 115: - goto stCase115 - case 116: - goto stCase116 - case 117: - goto stCase117 - case 118: - goto stCase118 - case 119: - goto stCase119 - case 120: - goto stCase120 - case 121: - goto stCase121 - case 122: - goto stCase122 - case 123: - goto stCase123 - case 124: - goto stCase124 - case 125: - goto stCase125 - case 126: - goto stCase126 - case 127: - goto stCase127 - case 128: - goto stCase128 - case 129: - goto stCase129 - case 130: - goto stCase130 - case 131: - goto stCase131 - case 132: - goto stCase132 - case 133: - goto stCase133 - case 134: - goto stCase134 - case 135: - goto stCase135 - case 136: - goto stCase136 - case 137: - goto stCase137 - case 138: - goto stCase138 - case 139: - goto stCase139 - case 140: - goto stCase140 - case 141: - goto stCase141 - case 142: - goto stCase142 - case 143: - goto stCase143 - case 144: - goto stCase144 - case 145: - goto stCase145 - case 146: - goto stCase146 - case 147: - goto stCase147 - case 148: - goto stCase148 - case 149: - goto stCase149 - case 150: - goto stCase150 - case 151: - goto stCase151 - case 152: - goto stCase152 - case 153: - goto stCase153 - case 154: - goto stCase154 - case 155: - goto stCase155 - case 156: - goto stCase156 - case 157: - goto stCase157 - case 158: - goto stCase158 - case 159: - goto stCase159 - case 160: - goto stCase160 - case 161: - goto stCase161 - case 162: - goto stCase162 - case 163: - goto stCase163 - case 164: - goto stCase164 - case 165: - goto stCase165 - case 166: - goto stCase166 - case 167: - goto stCase167 - case 168: - goto stCase168 - case 169: - goto stCase169 - case 170: - goto stCase170 - case 171: - goto stCase171 - case 172: - goto stCase172 - case 173: - goto stCase173 - case 174: - goto stCase174 - case 175: - goto stCase175 - case 176: - goto stCase176 - case 177: - goto stCase177 - case 178: - goto stCase178 - case 179: - goto stCase179 - case 180: - goto stCase180 - case 181: - goto stCase181 - case 182: - goto stCase182 - case 183: - goto stCase183 - case 184: - goto stCase184 - case 185: - goto stCase185 - case 186: - goto stCase186 - case 187: - goto stCase187 - case 188: - goto stCase188 - case 189: - goto stCase189 - case 190: - goto stCase190 - case 191: - goto stCase191 - case 192: - goto stCase192 - case 193: - goto stCase193 - case 194: - goto stCase194 - case 195: - goto stCase195 - case 196: - goto stCase196 - case 197: - goto stCase197 - case 198: - goto stCase198 - case 199: - goto stCase199 - case 200: - goto stCase200 - case 201: - goto stCase201 - case 202: - goto stCase202 - case 203: - goto stCase203 - case 204: - goto stCase204 - case 205: - goto stCase205 - case 206: - goto stCase206 - case 207: - goto stCase207 - case 208: - goto stCase208 - case 209: - goto stCase209 - case 210: - goto stCase210 - case 211: - goto stCase211 - case 212: - goto stCase212 - case 213: - goto stCase213 - case 214: - goto stCase214 - case 215: - goto stCase215 - case 216: - goto stCase216 - case 217: - goto stCase217 - case 218: - goto stCase218 - case 219: - goto stCase219 - case 220: - goto stCase220 - case 221: - goto stCase221 - case 222: - goto stCase222 - case 223: - goto stCase223 - case 224: - goto stCase224 - case 225: - goto stCase225 - case 226: - goto stCase226 - case 227: - goto stCase227 - case 228: - goto stCase228 - case 229: - goto stCase229 - case 230: - goto stCase230 - case 231: - goto stCase231 - case 232: - goto stCase232 - case 233: - goto stCase233 - case 234: - goto stCase234 - case 235: - goto stCase235 - case 236: - goto stCase236 - case 237: - goto stCase237 - case 238: - goto stCase238 - case 239: - goto stCase239 - case 240: - goto stCase240 - case 241: - goto stCase241 - case 242: - goto stCase242 - case 243: - goto stCase243 - case 244: - goto stCase244 - case 245: - goto stCase245 - case 246: - goto stCase246 - case 247: - goto stCase247 - case 248: - goto stCase248 - case 249: - goto stCase249 - case 250: - goto stCase250 - case 251: - goto stCase251 - case 252: - goto stCase252 - case 253: - goto stCase253 - case 254: - goto stCase254 - case 255: - goto stCase255 - case 256: - goto stCase256 - case 257: - goto stCase257 - case 258: - goto stCase258 - case 259: - goto stCase259 - case 260: - goto stCase260 - case 261: - goto stCase261 - case 262: - goto stCase262 - case 263: - goto stCase263 - case 264: - goto stCase264 - case 265: - goto stCase265 - case 266: - goto stCase266 - case 267: - goto stCase267 - case 268: - goto stCase268 - case 269: - goto stCase269 - case 270: - goto stCase270 - case 271: - goto stCase271 - case 272: - goto stCase272 - case 273: - goto stCase273 - case 274: - goto stCase274 - case 275: - goto stCase275 - case 276: - goto stCase276 - case 277: - goto stCase277 - case 278: - goto stCase278 - case 279: - goto stCase279 - case 280: - goto stCase280 - case 281: - goto stCase281 - case 282: - goto stCase282 - case 283: - goto stCase283 - case 284: - goto stCase284 - case 285: - goto stCase285 - case 286: - goto stCase286 - case 287: - goto stCase287 - case 288: - goto stCase288 - case 289: - goto stCase289 - case 290: - goto stCase290 - case 291: - goto stCase291 - case 292: - goto stCase292 - case 293: - goto stCase293 - case 294: - goto stCase294 - case 295: - goto stCase295 - case 296: - goto stCase296 - case 297: - goto stCase297 - case 298: - goto stCase298 - case 299: - goto stCase299 - case 300: - goto stCase300 - case 301: - goto stCase301 - case 302: - goto stCase302 - case 303: - goto stCase303 - case 304: - goto stCase304 - case 305: - goto stCase305 - case 306: - goto stCase306 - case 307: - goto stCase307 - case 308: - goto stCase308 - case 309: - goto stCase309 - case 39: - goto stCase39 - case 310: - goto stCase310 - case 311: - goto stCase311 - case 312: - goto stCase312 - case 313: - goto stCase313 - case 314: - goto stCase314 - case 315: - goto stCase315 - case 316: - goto stCase316 - case 317: - goto stCase317 - case 318: - goto stCase318 - case 319: - goto stCase319 - case 320: - goto stCase320 - case 321: - goto stCase321 - case 322: - goto stCase322 - case 323: - goto stCase323 - case 324: - goto stCase324 - case 325: - goto stCase325 - case 326: - goto stCase326 - case 327: - goto stCase327 - case 328: - goto stCase328 - case 329: - goto stCase329 - case 330: - goto stCase330 - case 331: - goto stCase331 - case 332: - goto stCase332 - case 333: - goto stCase333 - case 334: - goto stCase334 - case 335: - goto stCase335 - case 336: - goto stCase336 - case 337: - goto stCase337 - case 338: - goto stCase338 - case 339: - goto stCase339 - case 340: - goto stCase340 - case 341: - goto stCase341 - case 342: - goto stCase342 - case 343: - goto stCase343 - case 344: - goto stCase344 - case 345: - goto stCase345 - case 346: - goto stCase346 - case 347: - goto stCase347 - case 348: - goto stCase348 - case 349: - goto stCase349 - case 350: - goto stCase350 - case 351: - goto stCase351 - case 352: - goto stCase352 - case 353: - goto stCase353 - case 354: - goto stCase354 - case 355: - goto stCase355 - case 356: - goto stCase356 - case 357: - goto stCase357 - case 40: - goto stCase40 - case 358: - goto stCase358 - case 359: - goto stCase359 - case 360: - goto stCase360 - case 361: - goto stCase361 - case 362: - goto stCase362 - case 363: - goto stCase363 - case 364: - goto stCase364 - case 365: - goto stCase365 - case 366: - goto stCase366 - case 367: - goto stCase367 - case 368: - goto stCase368 - case 369: - goto stCase369 - case 370: - goto stCase370 - case 371: - goto stCase371 - case 372: - goto stCase372 - case 373: - goto stCase373 - case 374: - goto stCase374 - case 375: - goto stCase375 - case 376: - goto stCase376 - case 377: - goto stCase377 - case 378: - goto stCase378 - case 379: - goto stCase379 - case 380: - goto stCase380 - case 381: - goto stCase381 - case 382: - goto stCase382 - case 383: - goto stCase383 - case 384: - goto stCase384 - case 385: - goto stCase385 - case 386: - goto stCase386 - case 387: - goto stCase387 - case 388: - goto stCase388 - case 389: - goto stCase389 - case 390: - goto stCase390 - case 391: - goto stCase391 - case 392: - goto stCase392 - case 393: - goto stCase393 - case 394: - goto stCase394 - case 395: - goto stCase395 - case 396: - goto stCase396 - case 397: - goto stCase397 - case 398: - goto stCase398 - case 399: - goto stCase399 - case 400: - goto stCase400 - case 401: - goto stCase401 - case 402: - goto stCase402 - case 403: - goto stCase403 - case 404: - goto stCase404 - case 405: - goto stCase405 - case 406: - goto stCase406 - case 407: - goto stCase407 - case 408: - goto stCase408 - case 409: - goto stCase409 - case 410: - goto stCase410 - case 411: - goto stCase411 - case 412: - goto stCase412 - case 413: - goto stCase413 - case 414: - goto stCase414 - case 415: - goto stCase415 - case 416: - goto stCase416 - case 417: - goto stCase417 - case 418: - goto stCase418 - case 419: - goto stCase419 - case 420: - goto stCase420 - case 421: - goto stCase421 - case 422: - goto stCase422 - case 423: - goto stCase423 - case 424: - goto stCase424 - case 425: - goto stCase425 - case 426: - goto stCase426 - case 427: - goto stCase427 - case 428: - goto stCase428 - case 429: - goto stCase429 - case 430: - goto stCase430 - case 431: - goto stCase431 - case 432: - goto stCase432 - case 433: - goto stCase433 - case 434: - goto stCase434 - case 435: - goto stCase435 - case 436: - goto stCase436 - case 437: - goto stCase437 - case 438: - goto stCase438 - case 439: - goto stCase439 - case 440: - goto stCase440 - case 441: - goto stCase441 - case 442: - goto stCase442 - case 443: - goto stCase443 - case 444: - goto stCase444 - case 445: - goto stCase445 - case 446: - goto stCase446 - case 447: - goto stCase447 - case 448: - goto stCase448 - case 449: - goto stCase449 - case 450: - goto stCase450 - case 451: - goto stCase451 - case 452: - goto stCase452 - case 453: - goto stCase453 - case 454: - goto stCase454 - case 455: - goto stCase455 - case 456: - goto stCase456 - case 457: - goto stCase457 - case 458: - goto stCase458 - case 459: - goto stCase459 - case 460: - goto stCase460 - case 461: - goto stCase461 - case 462: - goto stCase462 - case 463: - goto stCase463 - case 464: - goto stCase464 - case 465: - goto stCase465 - case 466: - goto stCase466 - case 467: - goto stCase467 - case 468: - goto stCase468 - case 469: - goto stCase469 - case 470: - goto stCase470 - case 471: - goto stCase471 - case 472: - goto stCase472 - case 473: - goto stCase473 - case 474: - goto stCase474 - case 475: - goto stCase475 - case 476: - goto stCase476 - case 477: - goto stCase477 - case 478: - goto stCase478 - case 479: - goto stCase479 - case 480: - goto stCase480 - case 481: - goto stCase481 - case 482: - goto stCase482 - case 483: - goto stCase483 - case 484: - goto stCase484 - case 485: - goto stCase485 - case 41: - goto stCase41 - case 486: - goto stCase486 - case 487: - goto stCase487 - case 488: - goto stCase488 - case 489: - goto stCase489 - case 490: - goto stCase490 - case 491: - goto stCase491 - case 492: - goto stCase492 - case 493: - goto stCase493 - case 494: - goto stCase494 - case 495: - goto stCase495 - case 496: - goto stCase496 - case 497: - goto stCase497 - case 498: - goto stCase498 - case 499: - goto stCase499 - case 500: - goto stCase500 - case 501: - goto stCase501 - case 502: - goto stCase502 - case 503: - goto stCase503 - case 504: - goto stCase504 - case 505: - goto stCase505 - case 506: - goto stCase506 - case 507: - goto stCase507 - case 508: - goto stCase508 - case 509: - goto stCase509 - case 510: - goto stCase510 - case 511: - goto stCase511 - case 512: - goto stCase512 - case 513: - goto stCase513 - case 514: - goto stCase514 - case 515: - goto stCase515 - case 516: - goto stCase516 - case 517: - goto stCase517 - case 42: - goto stCase42 - case 518: - goto stCase518 - case 519: - goto stCase519 - case 520: - goto stCase520 - case 521: - goto stCase521 - case 522: - goto stCase522 - case 523: - goto stCase523 - case 524: - goto stCase524 - case 525: - goto stCase525 - case 526: - goto stCase526 - case 527: - goto stCase527 - case 528: - goto stCase528 - case 529: - goto stCase529 - case 530: - goto stCase530 - case 531: - goto stCase531 - case 532: - goto stCase532 - case 533: - goto stCase533 - case 534: - goto stCase534 - case 535: - goto stCase535 - case 536: - goto stCase536 - case 537: - goto stCase537 - case 538: - goto stCase538 - case 539: - goto stCase539 - case 540: - goto stCase540 - case 541: - goto stCase541 - case 542: - goto stCase542 - case 543: - goto stCase543 - case 544: - goto stCase544 - case 545: - goto stCase545 - case 546: - goto stCase546 - case 547: - goto stCase547 - case 548: - goto stCase548 - case 549: - goto stCase549 - case 43: - goto stCase43 - case 550: - goto stCase550 - case 551: - goto stCase551 - case 552: - goto stCase552 - case 553: - goto stCase553 - case 554: - goto stCase554 - case 555: - goto stCase555 - case 556: - goto stCase556 - case 557: - goto stCase557 - case 558: - goto stCase558 - case 559: - goto stCase559 - case 560: - goto stCase560 - case 561: - goto stCase561 - case 562: - goto stCase562 - case 563: - goto stCase563 - case 564: - goto stCase564 - case 565: - goto stCase565 - case 566: - goto stCase566 - case 567: - goto stCase567 - case 568: - goto stCase568 - case 569: - goto stCase569 - case 570: - goto stCase570 - case 571: - goto stCase571 - case 572: - goto stCase572 - case 573: - goto stCase573 - case 574: - goto stCase574 - case 575: - goto stCase575 - case 576: - goto stCase576 - case 577: - goto stCase577 - case 578: - goto stCase578 - case 579: - goto stCase579 - case 580: - goto stCase580 - case 581: - goto stCase581 - case 582: - goto stCase582 - case 583: - goto stCase583 - case 44: - goto stCase44 - case 45: - goto stCase45 - case 46: - goto stCase46 - case 47: - goto stCase47 - case 48: - goto stCase48 - case 49: - goto stCase49 - case 50: - goto stCase50 - case 51: - goto stCase51 - } - goto stOut - stCase52: + if p == pe { + goto _test_eof + } + switch cs { + case 52: + goto st_case_52 + case 53: + goto st_case_53 + 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 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 54: + goto st_case_54 + 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 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 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 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 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 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 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 247: + goto st_case_247 + case 248: + goto st_case_248 + case 249: + goto st_case_249 + case 250: + goto st_case_250 + case 251: + goto st_case_251 + case 252: + goto st_case_252 + case 253: + goto st_case_253 + case 254: + goto st_case_254 + 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 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 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 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 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 39: + goto st_case_39 + 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 40: + goto st_case_40 + 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 41: + goto st_case_41 + 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 42: + goto st_case_42 + 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 43: + goto st_case_43 + 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 44: + goto st_case_44 + 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 + } + goto st_out + st_case_52: goto tr47 - tr47: +tr47: +//line rfc5424/builder.go.rl:18 - pb = p + pb = p - goto st53 + goto st53 st53: if p++; p == pe { - goto _testEof53 + goto _test_eof53 } - stCase53: + st_case_53: +//line rfc5424/builder.go:1278 goto st53 - stCase1: + st_case_1: if 48 <= data[p] && data[p] <= 57 { goto tr0 } goto st0 - stCase0: +st_case_0: st0: cs = 0 goto _out - tr0: +tr0: +//line rfc5424/builder.go.rl:18 - pb = p + pb = p - goto st2 + goto st2 st2: if p++; p == pe { - goto _testEof2 + goto _test_eof2 } - stCase2: + st_case_2: +//line rfc5424/builder.go:1300 if 48 <= data[p] && data[p] <= 57 { goto st3 } goto st0 st3: if p++; p == pe { - goto _testEof3 + goto _test_eof3 } - stCase3: + st_case_3: if 48 <= data[p] && data[p] <= 57 { goto st4 } goto st0 st4: if p++; p == pe { - goto _testEof4 + goto _test_eof4 } - stCase4: + st_case_4: if 48 <= data[p] && data[p] <= 57 { goto st5 } goto st0 st5: if p++; p == pe { - goto _testEof5 + goto _test_eof5 } - stCase5: + st_case_5: if data[p] == 45 { goto st6 } goto st0 st6: if p++; p == pe { - goto _testEof6 + goto _test_eof6 } - stCase6: + st_case_6: switch data[p] { case 48: goto st7 @@ -1325,27 +1342,27 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st7: if p++; p == pe { - goto _testEof7 + goto _test_eof7 } - stCase7: + st_case_7: if 49 <= data[p] && data[p] <= 57 { goto st8 } goto st0 st8: if p++; p == pe { - goto _testEof8 + goto _test_eof8 } - stCase8: + st_case_8: if data[p] == 45 { goto st9 } goto st0 st9: if p++; p == pe { - goto _testEof9 + goto _test_eof9 } - stCase9: + st_case_9: switch data[p] { case 48: goto st10 @@ -1358,27 +1375,27 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st10: if p++; p == pe { - goto _testEof10 + goto _test_eof10 } - stCase10: + st_case_10: if 49 <= data[p] && data[p] <= 57 { goto st11 } goto st0 st11: if p++; p == pe { - goto _testEof11 + goto _test_eof11 } - stCase11: + st_case_11: if data[p] == 84 { goto st12 } goto st0 st12: if p++; p == pe { - goto _testEof12 + goto _test_eof12 } - stCase12: + st_case_12: if data[p] == 50 { goto st34 } @@ -1388,72 +1405,72 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st13: if p++; p == pe { - goto _testEof13 + goto _test_eof13 } - stCase13: + st_case_13: if 48 <= data[p] && data[p] <= 57 { goto st14 } goto st0 st14: if p++; p == pe { - goto _testEof14 + goto _test_eof14 } - stCase14: + st_case_14: if data[p] == 58 { goto st15 } goto st0 st15: if p++; p == pe { - goto _testEof15 + goto _test_eof15 } - stCase15: + st_case_15: if 48 <= data[p] && data[p] <= 53 { goto st16 } goto st0 st16: if p++; p == pe { - goto _testEof16 + goto _test_eof16 } - stCase16: + st_case_16: if 48 <= data[p] && data[p] <= 57 { goto st17 } goto st0 st17: if p++; p == pe { - goto _testEof17 + goto _test_eof17 } - stCase17: + st_case_17: if data[p] == 58 { goto st18 } goto st0 st18: if p++; p == pe { - goto _testEof18 + goto _test_eof18 } - stCase18: + st_case_18: if 48 <= data[p] && data[p] <= 53 { goto st19 } goto st0 st19: if p++; p == pe { - goto _testEof19 + goto _test_eof19 } - stCase19: + st_case_19: if 48 <= data[p] && data[p] <= 57 { goto st20 } goto st0 st20: if p++; p == pe { - goto _testEof20 + goto _test_eof20 } - stCase20: + st_case_20: switch data[p] { case 43: goto st21 @@ -1467,9 +1484,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st21: if p++; p == pe { - goto _testEof21 + goto _test_eof21 } - stCase21: + st_case_21: if data[p] == 50 { goto st26 } @@ -1479,69 +1496,69 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st22: if p++; p == pe { - goto _testEof22 + goto _test_eof22 } - stCase22: + st_case_22: if 48 <= data[p] && data[p] <= 57 { goto st23 } goto st0 st23: if p++; p == pe { - goto _testEof23 + goto _test_eof23 } - stCase23: + st_case_23: if data[p] == 58 { goto st24 } goto st0 st24: if p++; p == pe { - goto _testEof24 + goto _test_eof24 } - stCase24: + st_case_24: if 48 <= data[p] && data[p] <= 53 { goto st25 } goto st0 st25: if p++; p == pe { - goto _testEof25 + goto _test_eof25 } - stCase25: + st_case_25: if 48 <= data[p] && data[p] <= 57 { goto st54 } goto st0 st54: if p++; p == pe { - goto _testEof54 + goto _test_eof54 } - stCase54: + st_case_54: goto st0 st26: if p++; p == pe { - goto _testEof26 + goto _test_eof26 } - stCase26: + st_case_26: if 48 <= data[p] && data[p] <= 51 { goto st23 } goto st0 st27: if p++; p == pe { - goto _testEof27 + goto _test_eof27 } - stCase27: + st_case_27: if 48 <= data[p] && data[p] <= 57 { goto st28 } goto st0 st28: if p++; p == pe { - goto _testEof28 + goto _test_eof28 } - stCase28: + st_case_28: switch data[p] { case 43: goto st21 @@ -1556,9 +1573,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st29: if p++; p == pe { - goto _testEof29 + goto _test_eof29 } - stCase29: + st_case_29: switch data[p] { case 43: goto st21 @@ -1573,9 +1590,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st30: if p++; p == pe { - goto _testEof30 + goto _test_eof30 } - stCase30: + st_case_30: switch data[p] { case 43: goto st21 @@ -1590,9 +1607,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st31: if p++; p == pe { - goto _testEof31 + goto _test_eof31 } - stCase31: + st_case_31: switch data[p] { case 43: goto st21 @@ -1607,9 +1624,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st32: if p++; p == pe { - goto _testEof32 + goto _test_eof32 } - stCase32: + st_case_32: switch data[p] { case 43: goto st21 @@ -1624,9 +1641,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st33: if p++; p == pe { - goto _testEof33 + goto _test_eof33 } - stCase33: + st_case_33: switch data[p] { case 43: goto st21 @@ -1638,4236 +1655,4244 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st34: if p++; p == pe { - goto _testEof34 + goto _test_eof34 } - stCase34: + st_case_34: if 48 <= data[p] && data[p] <= 51 { goto st14 } goto st0 st35: if p++; p == pe { - goto _testEof35 + goto _test_eof35 } - stCase35: + st_case_35: if 48 <= data[p] && data[p] <= 57 { goto st11 } goto st0 st36: if p++; p == pe { - goto _testEof36 + goto _test_eof36 } - stCase36: + st_case_36: if 48 <= data[p] && data[p] <= 49 { goto st11 } goto st0 st37: if p++; p == pe { - goto _testEof37 + goto _test_eof37 } - stCase37: + st_case_37: if 48 <= data[p] && data[p] <= 50 { goto st8 } goto st0 - stCase38: + st_case_38: if 33 <= data[p] && data[p] <= 126 { goto tr38 } goto st0 - tr38: +tr38: +//line rfc5424/builder.go.rl:18 - pb = p + pb = p - goto st55 + goto st55 st55: if p++; p == pe { - goto _testEof55 + goto _test_eof55 } - stCase55: + st_case_55: +//line rfc5424/builder.go:1709 if 33 <= data[p] && data[p] <= 126 { goto st56 } goto st0 st56: if p++; p == pe { - goto _testEof56 + goto _test_eof56 } - stCase56: + st_case_56: if 33 <= data[p] && data[p] <= 126 { goto st57 } goto st0 st57: if p++; p == pe { - goto _testEof57 + goto _test_eof57 } - stCase57: + st_case_57: if 33 <= data[p] && data[p] <= 126 { goto st58 } goto st0 st58: if p++; p == pe { - goto _testEof58 + goto _test_eof58 } - stCase58: + st_case_58: if 33 <= data[p] && data[p] <= 126 { goto st59 } goto st0 st59: if p++; p == pe { - goto _testEof59 + goto _test_eof59 } - stCase59: + st_case_59: if 33 <= data[p] && data[p] <= 126 { goto st60 } goto st0 st60: if p++; p == pe { - goto _testEof60 + goto _test_eof60 } - stCase60: + st_case_60: if 33 <= data[p] && data[p] <= 126 { goto st61 } goto st0 st61: if p++; p == pe { - goto _testEof61 + goto _test_eof61 } - stCase61: + st_case_61: if 33 <= data[p] && data[p] <= 126 { goto st62 } goto st0 st62: if p++; p == pe { - goto _testEof62 + goto _test_eof62 } - stCase62: + st_case_62: if 33 <= data[p] && data[p] <= 126 { goto st63 } goto st0 st63: if p++; p == pe { - goto _testEof63 + goto _test_eof63 } - stCase63: + st_case_63: if 33 <= data[p] && data[p] <= 126 { goto st64 } goto st0 st64: if p++; p == pe { - goto _testEof64 + goto _test_eof64 } - stCase64: + st_case_64: if 33 <= data[p] && data[p] <= 126 { goto st65 } goto st0 st65: if p++; p == pe { - goto _testEof65 + goto _test_eof65 } - stCase65: + st_case_65: if 33 <= data[p] && data[p] <= 126 { goto st66 } goto st0 st66: if p++; p == pe { - goto _testEof66 + goto _test_eof66 } - stCase66: + st_case_66: if 33 <= data[p] && data[p] <= 126 { goto st67 } goto st0 st67: if p++; p == pe { - goto _testEof67 + goto _test_eof67 } - stCase67: + st_case_67: if 33 <= data[p] && data[p] <= 126 { goto st68 } goto st0 st68: if p++; p == pe { - goto _testEof68 + goto _test_eof68 } - stCase68: + st_case_68: if 33 <= data[p] && data[p] <= 126 { goto st69 } goto st0 st69: if p++; p == pe { - goto _testEof69 + goto _test_eof69 } - stCase69: + st_case_69: if 33 <= data[p] && data[p] <= 126 { goto st70 } goto st0 st70: if p++; p == pe { - goto _testEof70 + goto _test_eof70 } - stCase70: + st_case_70: if 33 <= data[p] && data[p] <= 126 { goto st71 } goto st0 st71: if p++; p == pe { - goto _testEof71 + goto _test_eof71 } - stCase71: + st_case_71: if 33 <= data[p] && data[p] <= 126 { goto st72 } goto st0 st72: if p++; p == pe { - goto _testEof72 + goto _test_eof72 } - stCase72: + st_case_72: if 33 <= data[p] && data[p] <= 126 { goto st73 } goto st0 st73: if p++; p == pe { - goto _testEof73 + goto _test_eof73 } - stCase73: + st_case_73: if 33 <= data[p] && data[p] <= 126 { goto st74 } goto st0 st74: if p++; p == pe { - goto _testEof74 + goto _test_eof74 } - stCase74: + st_case_74: if 33 <= data[p] && data[p] <= 126 { goto st75 } goto st0 st75: if p++; p == pe { - goto _testEof75 + goto _test_eof75 } - stCase75: + st_case_75: if 33 <= data[p] && data[p] <= 126 { goto st76 } goto st0 st76: if p++; p == pe { - goto _testEof76 + goto _test_eof76 } - stCase76: + st_case_76: if 33 <= data[p] && data[p] <= 126 { goto st77 } goto st0 st77: if p++; p == pe { - goto _testEof77 + goto _test_eof77 } - stCase77: + st_case_77: if 33 <= data[p] && data[p] <= 126 { goto st78 } goto st0 st78: if p++; p == pe { - goto _testEof78 + goto _test_eof78 } - stCase78: + st_case_78: if 33 <= data[p] && data[p] <= 126 { goto st79 } goto st0 st79: if p++; p == pe { - goto _testEof79 + goto _test_eof79 } - stCase79: + st_case_79: if 33 <= data[p] && data[p] <= 126 { goto st80 } goto st0 st80: if p++; p == pe { - goto _testEof80 + goto _test_eof80 } - stCase80: + st_case_80: if 33 <= data[p] && data[p] <= 126 { goto st81 } goto st0 st81: if p++; p == pe { - goto _testEof81 + goto _test_eof81 } - stCase81: + st_case_81: if 33 <= data[p] && data[p] <= 126 { goto st82 } goto st0 st82: if p++; p == pe { - goto _testEof82 + goto _test_eof82 } - stCase82: + st_case_82: if 33 <= data[p] && data[p] <= 126 { goto st83 } goto st0 st83: if p++; p == pe { - goto _testEof83 + goto _test_eof83 } - stCase83: + st_case_83: if 33 <= data[p] && data[p] <= 126 { goto st84 } goto st0 st84: if p++; p == pe { - goto _testEof84 + goto _test_eof84 } - stCase84: + st_case_84: if 33 <= data[p] && data[p] <= 126 { goto st85 } goto st0 st85: if p++; p == pe { - goto _testEof85 + goto _test_eof85 } - stCase85: + st_case_85: if 33 <= data[p] && data[p] <= 126 { goto st86 } goto st0 st86: if p++; p == pe { - goto _testEof86 + goto _test_eof86 } - stCase86: + st_case_86: if 33 <= data[p] && data[p] <= 126 { goto st87 } goto st0 st87: if p++; p == pe { - goto _testEof87 + goto _test_eof87 } - stCase87: + st_case_87: if 33 <= data[p] && data[p] <= 126 { goto st88 } goto st0 st88: if p++; p == pe { - goto _testEof88 + goto _test_eof88 } - stCase88: + st_case_88: if 33 <= data[p] && data[p] <= 126 { goto st89 } goto st0 st89: if p++; p == pe { - goto _testEof89 + goto _test_eof89 } - stCase89: + st_case_89: if 33 <= data[p] && data[p] <= 126 { goto st90 } goto st0 st90: if p++; p == pe { - goto _testEof90 + goto _test_eof90 } - stCase90: + st_case_90: if 33 <= data[p] && data[p] <= 126 { goto st91 } goto st0 st91: if p++; p == pe { - goto _testEof91 + goto _test_eof91 } - stCase91: + st_case_91: if 33 <= data[p] && data[p] <= 126 { goto st92 } goto st0 st92: if p++; p == pe { - goto _testEof92 + goto _test_eof92 } - stCase92: + st_case_92: if 33 <= data[p] && data[p] <= 126 { goto st93 } goto st0 st93: if p++; p == pe { - goto _testEof93 + goto _test_eof93 } - stCase93: + st_case_93: if 33 <= data[p] && data[p] <= 126 { goto st94 } goto st0 st94: if p++; p == pe { - goto _testEof94 + goto _test_eof94 } - stCase94: + st_case_94: if 33 <= data[p] && data[p] <= 126 { goto st95 } goto st0 st95: if p++; p == pe { - goto _testEof95 + goto _test_eof95 } - stCase95: + st_case_95: if 33 <= data[p] && data[p] <= 126 { goto st96 } goto st0 st96: if p++; p == pe { - goto _testEof96 + goto _test_eof96 } - stCase96: + st_case_96: if 33 <= data[p] && data[p] <= 126 { goto st97 } goto st0 st97: if p++; p == pe { - goto _testEof97 + goto _test_eof97 } - stCase97: + st_case_97: if 33 <= data[p] && data[p] <= 126 { goto st98 } goto st0 st98: if p++; p == pe { - goto _testEof98 + goto _test_eof98 } - stCase98: + st_case_98: if 33 <= data[p] && data[p] <= 126 { goto st99 } goto st0 st99: if p++; p == pe { - goto _testEof99 + goto _test_eof99 } - stCase99: + st_case_99: if 33 <= data[p] && data[p] <= 126 { goto st100 } goto st0 st100: if p++; p == pe { - goto _testEof100 + goto _test_eof100 } - stCase100: + st_case_100: if 33 <= data[p] && data[p] <= 126 { goto st101 } goto st0 st101: if p++; p == pe { - goto _testEof101 + goto _test_eof101 } - stCase101: + st_case_101: if 33 <= data[p] && data[p] <= 126 { goto st102 } goto st0 st102: if p++; p == pe { - goto _testEof102 + goto _test_eof102 } - stCase102: + st_case_102: if 33 <= data[p] && data[p] <= 126 { goto st103 } goto st0 st103: if p++; p == pe { - goto _testEof103 + goto _test_eof103 } - stCase103: + st_case_103: if 33 <= data[p] && data[p] <= 126 { goto st104 } goto st0 st104: if p++; p == pe { - goto _testEof104 + goto _test_eof104 } - stCase104: + st_case_104: if 33 <= data[p] && data[p] <= 126 { goto st105 } goto st0 st105: if p++; p == pe { - goto _testEof105 + goto _test_eof105 } - stCase105: + st_case_105: if 33 <= data[p] && data[p] <= 126 { goto st106 } goto st0 st106: if p++; p == pe { - goto _testEof106 + goto _test_eof106 } - stCase106: + st_case_106: if 33 <= data[p] && data[p] <= 126 { goto st107 } goto st0 st107: if p++; p == pe { - goto _testEof107 + goto _test_eof107 } - stCase107: + st_case_107: if 33 <= data[p] && data[p] <= 126 { goto st108 } goto st0 st108: if p++; p == pe { - goto _testEof108 + goto _test_eof108 } - stCase108: + st_case_108: if 33 <= data[p] && data[p] <= 126 { goto st109 } goto st0 st109: if p++; p == pe { - goto _testEof109 + goto _test_eof109 } - stCase109: + st_case_109: if 33 <= data[p] && data[p] <= 126 { goto st110 } goto st0 st110: if p++; p == pe { - goto _testEof110 + goto _test_eof110 } - stCase110: + st_case_110: if 33 <= data[p] && data[p] <= 126 { goto st111 } goto st0 st111: if p++; p == pe { - goto _testEof111 + goto _test_eof111 } - stCase111: + st_case_111: if 33 <= data[p] && data[p] <= 126 { goto st112 } goto st0 st112: if p++; p == pe { - goto _testEof112 + goto _test_eof112 } - stCase112: + st_case_112: if 33 <= data[p] && data[p] <= 126 { goto st113 } goto st0 st113: if p++; p == pe { - goto _testEof113 + goto _test_eof113 } - stCase113: + st_case_113: if 33 <= data[p] && data[p] <= 126 { goto st114 } goto st0 st114: if p++; p == pe { - goto _testEof114 + goto _test_eof114 } - stCase114: + st_case_114: if 33 <= data[p] && data[p] <= 126 { goto st115 } goto st0 st115: if p++; p == pe { - goto _testEof115 + goto _test_eof115 } - stCase115: + st_case_115: if 33 <= data[p] && data[p] <= 126 { goto st116 } goto st0 st116: if p++; p == pe { - goto _testEof116 + goto _test_eof116 } - stCase116: + st_case_116: if 33 <= data[p] && data[p] <= 126 { goto st117 } goto st0 st117: if p++; p == pe { - goto _testEof117 + goto _test_eof117 } - stCase117: + st_case_117: if 33 <= data[p] && data[p] <= 126 { goto st118 } goto st0 st118: if p++; p == pe { - goto _testEof118 + goto _test_eof118 } - stCase118: + st_case_118: if 33 <= data[p] && data[p] <= 126 { goto st119 } goto st0 st119: if p++; p == pe { - goto _testEof119 + goto _test_eof119 } - stCase119: + st_case_119: if 33 <= data[p] && data[p] <= 126 { goto st120 } goto st0 st120: if p++; p == pe { - goto _testEof120 + goto _test_eof120 } - stCase120: + st_case_120: if 33 <= data[p] && data[p] <= 126 { goto st121 } goto st0 st121: if p++; p == pe { - goto _testEof121 + goto _test_eof121 } - stCase121: + st_case_121: if 33 <= data[p] && data[p] <= 126 { goto st122 } goto st0 st122: if p++; p == pe { - goto _testEof122 + goto _test_eof122 } - stCase122: + st_case_122: if 33 <= data[p] && data[p] <= 126 { goto st123 } goto st0 st123: if p++; p == pe { - goto _testEof123 + goto _test_eof123 } - stCase123: + st_case_123: if 33 <= data[p] && data[p] <= 126 { goto st124 } goto st0 st124: if p++; p == pe { - goto _testEof124 + goto _test_eof124 } - stCase124: + st_case_124: if 33 <= data[p] && data[p] <= 126 { goto st125 } goto st0 st125: if p++; p == pe { - goto _testEof125 + goto _test_eof125 } - stCase125: + st_case_125: if 33 <= data[p] && data[p] <= 126 { goto st126 } goto st0 st126: if p++; p == pe { - goto _testEof126 + goto _test_eof126 } - stCase126: + st_case_126: if 33 <= data[p] && data[p] <= 126 { goto st127 } goto st0 st127: if p++; p == pe { - goto _testEof127 + goto _test_eof127 } - stCase127: + st_case_127: if 33 <= data[p] && data[p] <= 126 { goto st128 } goto st0 st128: if p++; p == pe { - goto _testEof128 + goto _test_eof128 } - stCase128: + st_case_128: if 33 <= data[p] && data[p] <= 126 { goto st129 } goto st0 st129: if p++; p == pe { - goto _testEof129 + goto _test_eof129 } - stCase129: + st_case_129: if 33 <= data[p] && data[p] <= 126 { goto st130 } goto st0 st130: if p++; p == pe { - goto _testEof130 + goto _test_eof130 } - stCase130: + st_case_130: if 33 <= data[p] && data[p] <= 126 { goto st131 } goto st0 st131: if p++; p == pe { - goto _testEof131 + goto _test_eof131 } - stCase131: + st_case_131: if 33 <= data[p] && data[p] <= 126 { goto st132 } goto st0 st132: if p++; p == pe { - goto _testEof132 + goto _test_eof132 } - stCase132: + st_case_132: if 33 <= data[p] && data[p] <= 126 { goto st133 } goto st0 st133: if p++; p == pe { - goto _testEof133 + goto _test_eof133 } - stCase133: + st_case_133: if 33 <= data[p] && data[p] <= 126 { goto st134 } goto st0 st134: if p++; p == pe { - goto _testEof134 + goto _test_eof134 } - stCase134: + st_case_134: if 33 <= data[p] && data[p] <= 126 { goto st135 } goto st0 st135: if p++; p == pe { - goto _testEof135 + goto _test_eof135 } - stCase135: + st_case_135: if 33 <= data[p] && data[p] <= 126 { goto st136 } goto st0 st136: if p++; p == pe { - goto _testEof136 + goto _test_eof136 } - stCase136: + st_case_136: if 33 <= data[p] && data[p] <= 126 { goto st137 } goto st0 st137: if p++; p == pe { - goto _testEof137 + goto _test_eof137 } - stCase137: + st_case_137: if 33 <= data[p] && data[p] <= 126 { goto st138 } goto st0 st138: if p++; p == pe { - goto _testEof138 + goto _test_eof138 } - stCase138: + st_case_138: if 33 <= data[p] && data[p] <= 126 { goto st139 } goto st0 st139: if p++; p == pe { - goto _testEof139 + goto _test_eof139 } - stCase139: + st_case_139: if 33 <= data[p] && data[p] <= 126 { goto st140 } goto st0 st140: if p++; p == pe { - goto _testEof140 + goto _test_eof140 } - stCase140: + st_case_140: if 33 <= data[p] && data[p] <= 126 { goto st141 } goto st0 st141: if p++; p == pe { - goto _testEof141 + goto _test_eof141 } - stCase141: + st_case_141: if 33 <= data[p] && data[p] <= 126 { goto st142 } goto st0 st142: if p++; p == pe { - goto _testEof142 + goto _test_eof142 } - stCase142: + st_case_142: if 33 <= data[p] && data[p] <= 126 { goto st143 } goto st0 st143: if p++; p == pe { - goto _testEof143 + goto _test_eof143 } - stCase143: + st_case_143: if 33 <= data[p] && data[p] <= 126 { goto st144 } goto st0 st144: if p++; p == pe { - goto _testEof144 + goto _test_eof144 } - stCase144: + st_case_144: if 33 <= data[p] && data[p] <= 126 { goto st145 } goto st0 st145: if p++; p == pe { - goto _testEof145 + goto _test_eof145 } - stCase145: + st_case_145: if 33 <= data[p] && data[p] <= 126 { goto st146 } goto st0 st146: if p++; p == pe { - goto _testEof146 + goto _test_eof146 } - stCase146: + st_case_146: if 33 <= data[p] && data[p] <= 126 { goto st147 } goto st0 st147: if p++; p == pe { - goto _testEof147 + goto _test_eof147 } - stCase147: + st_case_147: if 33 <= data[p] && data[p] <= 126 { goto st148 } goto st0 st148: if p++; p == pe { - goto _testEof148 + goto _test_eof148 } - stCase148: + st_case_148: if 33 <= data[p] && data[p] <= 126 { goto st149 } goto st0 st149: if p++; p == pe { - goto _testEof149 + goto _test_eof149 } - stCase149: + st_case_149: if 33 <= data[p] && data[p] <= 126 { goto st150 } goto st0 st150: if p++; p == pe { - goto _testEof150 + goto _test_eof150 } - stCase150: + st_case_150: if 33 <= data[p] && data[p] <= 126 { goto st151 } goto st0 st151: if p++; p == pe { - goto _testEof151 + goto _test_eof151 } - stCase151: + st_case_151: if 33 <= data[p] && data[p] <= 126 { goto st152 } goto st0 st152: if p++; p == pe { - goto _testEof152 + goto _test_eof152 } - stCase152: + st_case_152: if 33 <= data[p] && data[p] <= 126 { goto st153 } goto st0 st153: if p++; p == pe { - goto _testEof153 + goto _test_eof153 } - stCase153: + st_case_153: if 33 <= data[p] && data[p] <= 126 { goto st154 } goto st0 st154: if p++; p == pe { - goto _testEof154 + goto _test_eof154 } - stCase154: + st_case_154: if 33 <= data[p] && data[p] <= 126 { goto st155 } goto st0 st155: if p++; p == pe { - goto _testEof155 + goto _test_eof155 } - stCase155: + st_case_155: if 33 <= data[p] && data[p] <= 126 { goto st156 } goto st0 st156: if p++; p == pe { - goto _testEof156 + goto _test_eof156 } - stCase156: + st_case_156: if 33 <= data[p] && data[p] <= 126 { goto st157 } goto st0 st157: if p++; p == pe { - goto _testEof157 + goto _test_eof157 } - stCase157: + st_case_157: if 33 <= data[p] && data[p] <= 126 { goto st158 } goto st0 st158: if p++; p == pe { - goto _testEof158 + goto _test_eof158 } - stCase158: + st_case_158: if 33 <= data[p] && data[p] <= 126 { goto st159 } goto st0 st159: if p++; p == pe { - goto _testEof159 + goto _test_eof159 } - stCase159: + st_case_159: if 33 <= data[p] && data[p] <= 126 { goto st160 } goto st0 st160: if p++; p == pe { - goto _testEof160 + goto _test_eof160 } - stCase160: + st_case_160: if 33 <= data[p] && data[p] <= 126 { goto st161 } goto st0 st161: if p++; p == pe { - goto _testEof161 + goto _test_eof161 } - stCase161: + st_case_161: if 33 <= data[p] && data[p] <= 126 { goto st162 } goto st0 st162: if p++; p == pe { - goto _testEof162 + goto _test_eof162 } - stCase162: + st_case_162: if 33 <= data[p] && data[p] <= 126 { goto st163 } goto st0 st163: if p++; p == pe { - goto _testEof163 + goto _test_eof163 } - stCase163: + st_case_163: if 33 <= data[p] && data[p] <= 126 { goto st164 } goto st0 st164: if p++; p == pe { - goto _testEof164 + goto _test_eof164 } - stCase164: + st_case_164: if 33 <= data[p] && data[p] <= 126 { goto st165 } goto st0 st165: if p++; p == pe { - goto _testEof165 + goto _test_eof165 } - stCase165: + st_case_165: if 33 <= data[p] && data[p] <= 126 { goto st166 } goto st0 st166: if p++; p == pe { - goto _testEof166 + goto _test_eof166 } - stCase166: + st_case_166: if 33 <= data[p] && data[p] <= 126 { goto st167 } goto st0 st167: if p++; p == pe { - goto _testEof167 + goto _test_eof167 } - stCase167: + st_case_167: if 33 <= data[p] && data[p] <= 126 { goto st168 } goto st0 st168: if p++; p == pe { - goto _testEof168 + goto _test_eof168 } - stCase168: + st_case_168: if 33 <= data[p] && data[p] <= 126 { goto st169 } goto st0 st169: if p++; p == pe { - goto _testEof169 + goto _test_eof169 } - stCase169: + st_case_169: if 33 <= data[p] && data[p] <= 126 { goto st170 } goto st0 st170: if p++; p == pe { - goto _testEof170 + goto _test_eof170 } - stCase170: + st_case_170: if 33 <= data[p] && data[p] <= 126 { goto st171 } goto st0 st171: if p++; p == pe { - goto _testEof171 + goto _test_eof171 } - stCase171: + st_case_171: if 33 <= data[p] && data[p] <= 126 { goto st172 } goto st0 st172: if p++; p == pe { - goto _testEof172 + goto _test_eof172 } - stCase172: + st_case_172: if 33 <= data[p] && data[p] <= 126 { goto st173 } goto st0 st173: if p++; p == pe { - goto _testEof173 + goto _test_eof173 } - stCase173: + st_case_173: if 33 <= data[p] && data[p] <= 126 { goto st174 } goto st0 st174: if p++; p == pe { - goto _testEof174 + goto _test_eof174 } - stCase174: + st_case_174: if 33 <= data[p] && data[p] <= 126 { goto st175 } goto st0 st175: if p++; p == pe { - goto _testEof175 + goto _test_eof175 } - stCase175: + st_case_175: if 33 <= data[p] && data[p] <= 126 { goto st176 } goto st0 st176: if p++; p == pe { - goto _testEof176 + goto _test_eof176 } - stCase176: + st_case_176: if 33 <= data[p] && data[p] <= 126 { goto st177 } goto st0 st177: if p++; p == pe { - goto _testEof177 + goto _test_eof177 } - stCase177: + st_case_177: if 33 <= data[p] && data[p] <= 126 { goto st178 } goto st0 st178: if p++; p == pe { - goto _testEof178 + goto _test_eof178 } - stCase178: + st_case_178: if 33 <= data[p] && data[p] <= 126 { goto st179 } goto st0 st179: if p++; p == pe { - goto _testEof179 + goto _test_eof179 } - stCase179: + st_case_179: if 33 <= data[p] && data[p] <= 126 { goto st180 } goto st0 st180: if p++; p == pe { - goto _testEof180 + goto _test_eof180 } - stCase180: + st_case_180: if 33 <= data[p] && data[p] <= 126 { goto st181 } goto st0 st181: if p++; p == pe { - goto _testEof181 + goto _test_eof181 } - stCase181: + st_case_181: if 33 <= data[p] && data[p] <= 126 { goto st182 } goto st0 st182: if p++; p == pe { - goto _testEof182 + goto _test_eof182 } - stCase182: + st_case_182: if 33 <= data[p] && data[p] <= 126 { goto st183 } goto st0 st183: if p++; p == pe { - goto _testEof183 + goto _test_eof183 } - stCase183: + st_case_183: if 33 <= data[p] && data[p] <= 126 { goto st184 } goto st0 st184: if p++; p == pe { - goto _testEof184 + goto _test_eof184 } - stCase184: + st_case_184: if 33 <= data[p] && data[p] <= 126 { goto st185 } goto st0 st185: if p++; p == pe { - goto _testEof185 + goto _test_eof185 } - stCase185: + st_case_185: if 33 <= data[p] && data[p] <= 126 { goto st186 } goto st0 st186: if p++; p == pe { - goto _testEof186 + goto _test_eof186 } - stCase186: + st_case_186: if 33 <= data[p] && data[p] <= 126 { goto st187 } goto st0 st187: if p++; p == pe { - goto _testEof187 + goto _test_eof187 } - stCase187: + st_case_187: if 33 <= data[p] && data[p] <= 126 { goto st188 } goto st0 st188: if p++; p == pe { - goto _testEof188 + goto _test_eof188 } - stCase188: + st_case_188: if 33 <= data[p] && data[p] <= 126 { goto st189 } goto st0 st189: if p++; p == pe { - goto _testEof189 + goto _test_eof189 } - stCase189: + st_case_189: if 33 <= data[p] && data[p] <= 126 { goto st190 } goto st0 st190: if p++; p == pe { - goto _testEof190 + goto _test_eof190 } - stCase190: + st_case_190: if 33 <= data[p] && data[p] <= 126 { goto st191 } goto st0 st191: if p++; p == pe { - goto _testEof191 + goto _test_eof191 } - stCase191: + st_case_191: if 33 <= data[p] && data[p] <= 126 { goto st192 } goto st0 st192: if p++; p == pe { - goto _testEof192 + goto _test_eof192 } - stCase192: + st_case_192: if 33 <= data[p] && data[p] <= 126 { goto st193 } goto st0 st193: if p++; p == pe { - goto _testEof193 + goto _test_eof193 } - stCase193: + st_case_193: if 33 <= data[p] && data[p] <= 126 { goto st194 } goto st0 st194: if p++; p == pe { - goto _testEof194 + goto _test_eof194 } - stCase194: + st_case_194: if 33 <= data[p] && data[p] <= 126 { goto st195 } goto st0 st195: if p++; p == pe { - goto _testEof195 + goto _test_eof195 } - stCase195: + st_case_195: if 33 <= data[p] && data[p] <= 126 { goto st196 } goto st0 st196: if p++; p == pe { - goto _testEof196 + goto _test_eof196 } - stCase196: + st_case_196: if 33 <= data[p] && data[p] <= 126 { goto st197 } goto st0 st197: if p++; p == pe { - goto _testEof197 + goto _test_eof197 } - stCase197: + st_case_197: if 33 <= data[p] && data[p] <= 126 { goto st198 } goto st0 st198: if p++; p == pe { - goto _testEof198 + goto _test_eof198 } - stCase198: + st_case_198: if 33 <= data[p] && data[p] <= 126 { goto st199 } goto st0 st199: if p++; p == pe { - goto _testEof199 + goto _test_eof199 } - stCase199: + st_case_199: if 33 <= data[p] && data[p] <= 126 { goto st200 } goto st0 st200: if p++; p == pe { - goto _testEof200 + goto _test_eof200 } - stCase200: + st_case_200: if 33 <= data[p] && data[p] <= 126 { goto st201 } goto st0 st201: if p++; p == pe { - goto _testEof201 + goto _test_eof201 } - stCase201: + st_case_201: if 33 <= data[p] && data[p] <= 126 { goto st202 } goto st0 st202: if p++; p == pe { - goto _testEof202 + goto _test_eof202 } - stCase202: + st_case_202: if 33 <= data[p] && data[p] <= 126 { goto st203 } goto st0 st203: if p++; p == pe { - goto _testEof203 + goto _test_eof203 } - stCase203: + st_case_203: if 33 <= data[p] && data[p] <= 126 { goto st204 } goto st0 st204: if p++; p == pe { - goto _testEof204 + goto _test_eof204 } - stCase204: + st_case_204: if 33 <= data[p] && data[p] <= 126 { goto st205 } goto st0 st205: if p++; p == pe { - goto _testEof205 + goto _test_eof205 } - stCase205: + st_case_205: if 33 <= data[p] && data[p] <= 126 { goto st206 } goto st0 st206: if p++; p == pe { - goto _testEof206 + goto _test_eof206 } - stCase206: + st_case_206: if 33 <= data[p] && data[p] <= 126 { goto st207 } goto st0 st207: if p++; p == pe { - goto _testEof207 + goto _test_eof207 } - stCase207: + st_case_207: if 33 <= data[p] && data[p] <= 126 { goto st208 } goto st0 st208: if p++; p == pe { - goto _testEof208 + goto _test_eof208 } - stCase208: + st_case_208: if 33 <= data[p] && data[p] <= 126 { goto st209 } goto st0 st209: if p++; p == pe { - goto _testEof209 + goto _test_eof209 } - stCase209: + st_case_209: if 33 <= data[p] && data[p] <= 126 { goto st210 } goto st0 st210: if p++; p == pe { - goto _testEof210 + goto _test_eof210 } - stCase210: + st_case_210: if 33 <= data[p] && data[p] <= 126 { goto st211 } goto st0 st211: if p++; p == pe { - goto _testEof211 + goto _test_eof211 } - stCase211: + st_case_211: if 33 <= data[p] && data[p] <= 126 { goto st212 } goto st0 st212: if p++; p == pe { - goto _testEof212 + goto _test_eof212 } - stCase212: + st_case_212: if 33 <= data[p] && data[p] <= 126 { goto st213 } goto st0 st213: if p++; p == pe { - goto _testEof213 + goto _test_eof213 } - stCase213: + st_case_213: if 33 <= data[p] && data[p] <= 126 { goto st214 } goto st0 st214: if p++; p == pe { - goto _testEof214 + goto _test_eof214 } - stCase214: + st_case_214: if 33 <= data[p] && data[p] <= 126 { goto st215 } goto st0 st215: if p++; p == pe { - goto _testEof215 + goto _test_eof215 } - stCase215: + st_case_215: if 33 <= data[p] && data[p] <= 126 { goto st216 } goto st0 st216: if p++; p == pe { - goto _testEof216 + goto _test_eof216 } - stCase216: + st_case_216: if 33 <= data[p] && data[p] <= 126 { goto st217 } goto st0 st217: if p++; p == pe { - goto _testEof217 + goto _test_eof217 } - stCase217: + st_case_217: if 33 <= data[p] && data[p] <= 126 { goto st218 } goto st0 st218: if p++; p == pe { - goto _testEof218 + goto _test_eof218 } - stCase218: + st_case_218: if 33 <= data[p] && data[p] <= 126 { goto st219 } goto st0 st219: if p++; p == pe { - goto _testEof219 + goto _test_eof219 } - stCase219: + st_case_219: if 33 <= data[p] && data[p] <= 126 { goto st220 } goto st0 st220: if p++; p == pe { - goto _testEof220 + goto _test_eof220 } - stCase220: + st_case_220: if 33 <= data[p] && data[p] <= 126 { goto st221 } goto st0 st221: if p++; p == pe { - goto _testEof221 + goto _test_eof221 } - stCase221: + st_case_221: if 33 <= data[p] && data[p] <= 126 { goto st222 } goto st0 st222: if p++; p == pe { - goto _testEof222 + goto _test_eof222 } - stCase222: + st_case_222: if 33 <= data[p] && data[p] <= 126 { goto st223 } goto st0 st223: if p++; p == pe { - goto _testEof223 + goto _test_eof223 } - stCase223: + st_case_223: if 33 <= data[p] && data[p] <= 126 { goto st224 } goto st0 st224: if p++; p == pe { - goto _testEof224 + goto _test_eof224 } - stCase224: + st_case_224: if 33 <= data[p] && data[p] <= 126 { goto st225 } goto st0 st225: if p++; p == pe { - goto _testEof225 + goto _test_eof225 } - stCase225: + st_case_225: if 33 <= data[p] && data[p] <= 126 { goto st226 } goto st0 st226: if p++; p == pe { - goto _testEof226 + goto _test_eof226 } - stCase226: + st_case_226: if 33 <= data[p] && data[p] <= 126 { goto st227 } goto st0 st227: if p++; p == pe { - goto _testEof227 + goto _test_eof227 } - stCase227: + st_case_227: if 33 <= data[p] && data[p] <= 126 { goto st228 } goto st0 st228: if p++; p == pe { - goto _testEof228 + goto _test_eof228 } - stCase228: + st_case_228: if 33 <= data[p] && data[p] <= 126 { goto st229 } goto st0 st229: if p++; p == pe { - goto _testEof229 + goto _test_eof229 } - stCase229: + st_case_229: if 33 <= data[p] && data[p] <= 126 { goto st230 } goto st0 st230: if p++; p == pe { - goto _testEof230 + goto _test_eof230 } - stCase230: + st_case_230: if 33 <= data[p] && data[p] <= 126 { goto st231 } goto st0 st231: if p++; p == pe { - goto _testEof231 + goto _test_eof231 } - stCase231: + st_case_231: if 33 <= data[p] && data[p] <= 126 { goto st232 } goto st0 st232: if p++; p == pe { - goto _testEof232 + goto _test_eof232 } - stCase232: + st_case_232: if 33 <= data[p] && data[p] <= 126 { goto st233 } goto st0 st233: if p++; p == pe { - goto _testEof233 + goto _test_eof233 } - stCase233: + st_case_233: if 33 <= data[p] && data[p] <= 126 { goto st234 } goto st0 st234: if p++; p == pe { - goto _testEof234 + goto _test_eof234 } - stCase234: + st_case_234: if 33 <= data[p] && data[p] <= 126 { goto st235 } goto st0 st235: if p++; p == pe { - goto _testEof235 + goto _test_eof235 } - stCase235: + st_case_235: if 33 <= data[p] && data[p] <= 126 { goto st236 } goto st0 st236: if p++; p == pe { - goto _testEof236 + goto _test_eof236 } - stCase236: + st_case_236: if 33 <= data[p] && data[p] <= 126 { goto st237 } goto st0 st237: if p++; p == pe { - goto _testEof237 + goto _test_eof237 } - stCase237: + st_case_237: if 33 <= data[p] && data[p] <= 126 { goto st238 } goto st0 st238: if p++; p == pe { - goto _testEof238 + goto _test_eof238 } - stCase238: + st_case_238: if 33 <= data[p] && data[p] <= 126 { goto st239 } goto st0 st239: if p++; p == pe { - goto _testEof239 + goto _test_eof239 } - stCase239: + st_case_239: if 33 <= data[p] && data[p] <= 126 { goto st240 } goto st0 st240: if p++; p == pe { - goto _testEof240 + goto _test_eof240 } - stCase240: + st_case_240: if 33 <= data[p] && data[p] <= 126 { goto st241 } goto st0 st241: if p++; p == pe { - goto _testEof241 + goto _test_eof241 } - stCase241: + st_case_241: if 33 <= data[p] && data[p] <= 126 { goto st242 } goto st0 st242: if p++; p == pe { - goto _testEof242 + goto _test_eof242 } - stCase242: + st_case_242: if 33 <= data[p] && data[p] <= 126 { goto st243 } goto st0 st243: if p++; p == pe { - goto _testEof243 + goto _test_eof243 } - stCase243: + st_case_243: if 33 <= data[p] && data[p] <= 126 { goto st244 } goto st0 st244: if p++; p == pe { - goto _testEof244 + goto _test_eof244 } - stCase244: + st_case_244: if 33 <= data[p] && data[p] <= 126 { goto st245 } goto st0 st245: if p++; p == pe { - goto _testEof245 + goto _test_eof245 } - stCase245: + st_case_245: if 33 <= data[p] && data[p] <= 126 { goto st246 } goto st0 st246: if p++; p == pe { - goto _testEof246 + goto _test_eof246 } - stCase246: + st_case_246: if 33 <= data[p] && data[p] <= 126 { goto st247 } goto st0 st247: if p++; p == pe { - goto _testEof247 + goto _test_eof247 } - stCase247: + st_case_247: if 33 <= data[p] && data[p] <= 126 { goto st248 } goto st0 st248: if p++; p == pe { - goto _testEof248 + goto _test_eof248 } - stCase248: + st_case_248: if 33 <= data[p] && data[p] <= 126 { goto st249 } goto st0 st249: if p++; p == pe { - goto _testEof249 + goto _test_eof249 } - stCase249: + st_case_249: if 33 <= data[p] && data[p] <= 126 { goto st250 } goto st0 st250: if p++; p == pe { - goto _testEof250 + goto _test_eof250 } - stCase250: + st_case_250: if 33 <= data[p] && data[p] <= 126 { goto st251 } goto st0 st251: if p++; p == pe { - goto _testEof251 + goto _test_eof251 } - stCase251: + st_case_251: if 33 <= data[p] && data[p] <= 126 { goto st252 } goto st0 st252: if p++; p == pe { - goto _testEof252 + goto _test_eof252 } - stCase252: + st_case_252: if 33 <= data[p] && data[p] <= 126 { goto st253 } goto st0 st253: if p++; p == pe { - goto _testEof253 + goto _test_eof253 } - stCase253: + st_case_253: if 33 <= data[p] && data[p] <= 126 { goto st254 } goto st0 st254: if p++; p == pe { - goto _testEof254 + goto _test_eof254 } - stCase254: + st_case_254: if 33 <= data[p] && data[p] <= 126 { goto st255 } goto st0 st255: if p++; p == pe { - goto _testEof255 + goto _test_eof255 } - stCase255: + st_case_255: if 33 <= data[p] && data[p] <= 126 { goto st256 } goto st0 st256: if p++; p == pe { - goto _testEof256 + goto _test_eof256 } - stCase256: + st_case_256: if 33 <= data[p] && data[p] <= 126 { goto st257 } goto st0 st257: if p++; p == pe { - goto _testEof257 + goto _test_eof257 } - stCase257: + st_case_257: if 33 <= data[p] && data[p] <= 126 { goto st258 } goto st0 st258: if p++; p == pe { - goto _testEof258 + goto _test_eof258 } - stCase258: + st_case_258: if 33 <= data[p] && data[p] <= 126 { goto st259 } goto st0 st259: if p++; p == pe { - goto _testEof259 + goto _test_eof259 } - stCase259: + st_case_259: if 33 <= data[p] && data[p] <= 126 { goto st260 } goto st0 st260: if p++; p == pe { - goto _testEof260 + goto _test_eof260 } - stCase260: + st_case_260: if 33 <= data[p] && data[p] <= 126 { goto st261 } goto st0 st261: if p++; p == pe { - goto _testEof261 + goto _test_eof261 } - stCase261: + st_case_261: if 33 <= data[p] && data[p] <= 126 { goto st262 } goto st0 st262: if p++; p == pe { - goto _testEof262 + goto _test_eof262 } - stCase262: + st_case_262: if 33 <= data[p] && data[p] <= 126 { goto st263 } goto st0 st263: if p++; p == pe { - goto _testEof263 + goto _test_eof263 } - stCase263: + st_case_263: if 33 <= data[p] && data[p] <= 126 { goto st264 } goto st0 st264: if p++; p == pe { - goto _testEof264 + goto _test_eof264 } - stCase264: + st_case_264: if 33 <= data[p] && data[p] <= 126 { goto st265 } goto st0 st265: if p++; p == pe { - goto _testEof265 + goto _test_eof265 } - stCase265: + st_case_265: if 33 <= data[p] && data[p] <= 126 { goto st266 } goto st0 st266: if p++; p == pe { - goto _testEof266 + goto _test_eof266 } - stCase266: + st_case_266: if 33 <= data[p] && data[p] <= 126 { goto st267 } goto st0 st267: if p++; p == pe { - goto _testEof267 + goto _test_eof267 } - stCase267: + st_case_267: if 33 <= data[p] && data[p] <= 126 { goto st268 } goto st0 st268: if p++; p == pe { - goto _testEof268 + goto _test_eof268 } - stCase268: + st_case_268: if 33 <= data[p] && data[p] <= 126 { goto st269 } goto st0 st269: if p++; p == pe { - goto _testEof269 + goto _test_eof269 } - stCase269: + st_case_269: if 33 <= data[p] && data[p] <= 126 { goto st270 } goto st0 st270: if p++; p == pe { - goto _testEof270 + goto _test_eof270 } - stCase270: + st_case_270: if 33 <= data[p] && data[p] <= 126 { goto st271 } goto st0 st271: if p++; p == pe { - goto _testEof271 + goto _test_eof271 } - stCase271: + st_case_271: if 33 <= data[p] && data[p] <= 126 { goto st272 } goto st0 st272: if p++; p == pe { - goto _testEof272 + goto _test_eof272 } - stCase272: + st_case_272: if 33 <= data[p] && data[p] <= 126 { goto st273 } goto st0 st273: if p++; p == pe { - goto _testEof273 + goto _test_eof273 } - stCase273: + st_case_273: if 33 <= data[p] && data[p] <= 126 { goto st274 } goto st0 st274: if p++; p == pe { - goto _testEof274 + goto _test_eof274 } - stCase274: + st_case_274: if 33 <= data[p] && data[p] <= 126 { goto st275 } goto st0 st275: if p++; p == pe { - goto _testEof275 + goto _test_eof275 } - stCase275: + st_case_275: if 33 <= data[p] && data[p] <= 126 { goto st276 } goto st0 st276: if p++; p == pe { - goto _testEof276 + goto _test_eof276 } - stCase276: + st_case_276: if 33 <= data[p] && data[p] <= 126 { goto st277 } goto st0 st277: if p++; p == pe { - goto _testEof277 + goto _test_eof277 } - stCase277: + st_case_277: if 33 <= data[p] && data[p] <= 126 { goto st278 } goto st0 st278: if p++; p == pe { - goto _testEof278 + goto _test_eof278 } - stCase278: + st_case_278: if 33 <= data[p] && data[p] <= 126 { goto st279 } goto st0 st279: if p++; p == pe { - goto _testEof279 + goto _test_eof279 } - stCase279: + st_case_279: if 33 <= data[p] && data[p] <= 126 { goto st280 } goto st0 st280: if p++; p == pe { - goto _testEof280 + goto _test_eof280 } - stCase280: + st_case_280: if 33 <= data[p] && data[p] <= 126 { goto st281 } goto st0 st281: if p++; p == pe { - goto _testEof281 + goto _test_eof281 } - stCase281: + st_case_281: if 33 <= data[p] && data[p] <= 126 { goto st282 } goto st0 st282: if p++; p == pe { - goto _testEof282 + goto _test_eof282 } - stCase282: + st_case_282: if 33 <= data[p] && data[p] <= 126 { goto st283 } goto st0 st283: if p++; p == pe { - goto _testEof283 + goto _test_eof283 } - stCase283: + st_case_283: if 33 <= data[p] && data[p] <= 126 { goto st284 } goto st0 st284: if p++; p == pe { - goto _testEof284 + goto _test_eof284 } - stCase284: + st_case_284: if 33 <= data[p] && data[p] <= 126 { goto st285 } goto st0 st285: if p++; p == pe { - goto _testEof285 + goto _test_eof285 } - stCase285: + st_case_285: if 33 <= data[p] && data[p] <= 126 { goto st286 } goto st0 st286: if p++; p == pe { - goto _testEof286 + goto _test_eof286 } - stCase286: + st_case_286: if 33 <= data[p] && data[p] <= 126 { goto st287 } goto st0 st287: if p++; p == pe { - goto _testEof287 + goto _test_eof287 } - stCase287: + st_case_287: if 33 <= data[p] && data[p] <= 126 { goto st288 } goto st0 st288: if p++; p == pe { - goto _testEof288 + goto _test_eof288 } - stCase288: + st_case_288: if 33 <= data[p] && data[p] <= 126 { goto st289 } goto st0 st289: if p++; p == pe { - goto _testEof289 + goto _test_eof289 } - stCase289: + st_case_289: if 33 <= data[p] && data[p] <= 126 { goto st290 } goto st0 st290: if p++; p == pe { - goto _testEof290 + goto _test_eof290 } - stCase290: + st_case_290: if 33 <= data[p] && data[p] <= 126 { goto st291 } goto st0 st291: if p++; p == pe { - goto _testEof291 + goto _test_eof291 } - stCase291: + st_case_291: if 33 <= data[p] && data[p] <= 126 { goto st292 } goto st0 st292: if p++; p == pe { - goto _testEof292 + goto _test_eof292 } - stCase292: + st_case_292: if 33 <= data[p] && data[p] <= 126 { goto st293 } goto st0 st293: if p++; p == pe { - goto _testEof293 + goto _test_eof293 } - stCase293: + st_case_293: if 33 <= data[p] && data[p] <= 126 { goto st294 } goto st0 st294: if p++; p == pe { - goto _testEof294 + goto _test_eof294 } - stCase294: + st_case_294: if 33 <= data[p] && data[p] <= 126 { goto st295 } goto st0 st295: if p++; p == pe { - goto _testEof295 + goto _test_eof295 } - stCase295: + st_case_295: if 33 <= data[p] && data[p] <= 126 { goto st296 } goto st0 st296: if p++; p == pe { - goto _testEof296 + goto _test_eof296 } - stCase296: + st_case_296: if 33 <= data[p] && data[p] <= 126 { goto st297 } goto st0 st297: if p++; p == pe { - goto _testEof297 + goto _test_eof297 } - stCase297: + st_case_297: if 33 <= data[p] && data[p] <= 126 { goto st298 } goto st0 st298: if p++; p == pe { - goto _testEof298 + goto _test_eof298 } - stCase298: + st_case_298: if 33 <= data[p] && data[p] <= 126 { goto st299 } goto st0 st299: if p++; p == pe { - goto _testEof299 + goto _test_eof299 } - stCase299: + st_case_299: if 33 <= data[p] && data[p] <= 126 { goto st300 } goto st0 st300: if p++; p == pe { - goto _testEof300 + goto _test_eof300 } - stCase300: + st_case_300: if 33 <= data[p] && data[p] <= 126 { goto st301 } goto st0 st301: if p++; p == pe { - goto _testEof301 + goto _test_eof301 } - stCase301: + st_case_301: if 33 <= data[p] && data[p] <= 126 { goto st302 } goto st0 st302: if p++; p == pe { - goto _testEof302 + goto _test_eof302 } - stCase302: + st_case_302: if 33 <= data[p] && data[p] <= 126 { goto st303 } goto st0 st303: if p++; p == pe { - goto _testEof303 + goto _test_eof303 } - stCase303: + st_case_303: if 33 <= data[p] && data[p] <= 126 { goto st304 } goto st0 st304: if p++; p == pe { - goto _testEof304 + goto _test_eof304 } - stCase304: + st_case_304: if 33 <= data[p] && data[p] <= 126 { goto st305 } goto st0 st305: if p++; p == pe { - goto _testEof305 + goto _test_eof305 } - stCase305: + st_case_305: if 33 <= data[p] && data[p] <= 126 { goto st306 } goto st0 st306: if p++; p == pe { - goto _testEof306 + goto _test_eof306 } - stCase306: + st_case_306: if 33 <= data[p] && data[p] <= 126 { goto st307 } goto st0 st307: if p++; p == pe { - goto _testEof307 + goto _test_eof307 } - stCase307: + st_case_307: if 33 <= data[p] && data[p] <= 126 { goto st308 } goto st0 st308: if p++; p == pe { - goto _testEof308 + goto _test_eof308 } - stCase308: + st_case_308: if 33 <= data[p] && data[p] <= 126 { goto st309 } goto st0 st309: if p++; p == pe { - goto _testEof309 + goto _test_eof309 } - stCase309: + st_case_309: goto st0 - stCase39: + st_case_39: if 33 <= data[p] && data[p] <= 126 { goto tr39 } goto st0 - tr39: +tr39: +//line rfc5424/builder.go.rl:18 - pb = p + pb = p - goto st310 + goto st310 st310: if p++; p == pe { - goto _testEof310 + goto _test_eof310 } - stCase310: + st_case_310: +//line rfc5424/builder.go:4013 if 33 <= data[p] && data[p] <= 126 { goto st311 } goto st0 st311: if p++; p == pe { - goto _testEof311 + goto _test_eof311 } - stCase311: + st_case_311: if 33 <= data[p] && data[p] <= 126 { goto st312 } goto st0 st312: if p++; p == pe { - goto _testEof312 + goto _test_eof312 } - stCase312: + st_case_312: if 33 <= data[p] && data[p] <= 126 { goto st313 } goto st0 st313: if p++; p == pe { - goto _testEof313 + goto _test_eof313 } - stCase313: + st_case_313: if 33 <= data[p] && data[p] <= 126 { goto st314 } goto st0 st314: if p++; p == pe { - goto _testEof314 + goto _test_eof314 } - stCase314: + st_case_314: if 33 <= data[p] && data[p] <= 126 { goto st315 } goto st0 st315: if p++; p == pe { - goto _testEof315 + goto _test_eof315 } - stCase315: + st_case_315: if 33 <= data[p] && data[p] <= 126 { goto st316 } goto st0 st316: if p++; p == pe { - goto _testEof316 + goto _test_eof316 } - stCase316: + st_case_316: if 33 <= data[p] && data[p] <= 126 { goto st317 } goto st0 st317: if p++; p == pe { - goto _testEof317 + goto _test_eof317 } - stCase317: + st_case_317: if 33 <= data[p] && data[p] <= 126 { goto st318 } goto st0 st318: if p++; p == pe { - goto _testEof318 + goto _test_eof318 } - stCase318: + st_case_318: if 33 <= data[p] && data[p] <= 126 { goto st319 } goto st0 st319: if p++; p == pe { - goto _testEof319 + goto _test_eof319 } - stCase319: + st_case_319: if 33 <= data[p] && data[p] <= 126 { goto st320 } goto st0 st320: if p++; p == pe { - goto _testEof320 + goto _test_eof320 } - stCase320: + st_case_320: if 33 <= data[p] && data[p] <= 126 { goto st321 } goto st0 st321: if p++; p == pe { - goto _testEof321 + goto _test_eof321 } - stCase321: + st_case_321: if 33 <= data[p] && data[p] <= 126 { goto st322 } goto st0 st322: if p++; p == pe { - goto _testEof322 + goto _test_eof322 } - stCase322: + st_case_322: if 33 <= data[p] && data[p] <= 126 { goto st323 } goto st0 st323: if p++; p == pe { - goto _testEof323 + goto _test_eof323 } - stCase323: + st_case_323: if 33 <= data[p] && data[p] <= 126 { goto st324 } goto st0 st324: if p++; p == pe { - goto _testEof324 + goto _test_eof324 } - stCase324: + st_case_324: if 33 <= data[p] && data[p] <= 126 { goto st325 } goto st0 st325: if p++; p == pe { - goto _testEof325 + goto _test_eof325 } - stCase325: + st_case_325: if 33 <= data[p] && data[p] <= 126 { goto st326 } goto st0 st326: if p++; p == pe { - goto _testEof326 + goto _test_eof326 } - stCase326: + st_case_326: if 33 <= data[p] && data[p] <= 126 { goto st327 } goto st0 st327: if p++; p == pe { - goto _testEof327 + goto _test_eof327 } - stCase327: + st_case_327: if 33 <= data[p] && data[p] <= 126 { goto st328 } goto st0 st328: if p++; p == pe { - goto _testEof328 + goto _test_eof328 } - stCase328: + st_case_328: if 33 <= data[p] && data[p] <= 126 { goto st329 } goto st0 st329: if p++; p == pe { - goto _testEof329 + goto _test_eof329 } - stCase329: + st_case_329: if 33 <= data[p] && data[p] <= 126 { goto st330 } goto st0 st330: if p++; p == pe { - goto _testEof330 + goto _test_eof330 } - stCase330: + st_case_330: if 33 <= data[p] && data[p] <= 126 { goto st331 } goto st0 st331: if p++; p == pe { - goto _testEof331 + goto _test_eof331 } - stCase331: + st_case_331: if 33 <= data[p] && data[p] <= 126 { goto st332 } goto st0 st332: if p++; p == pe { - goto _testEof332 + goto _test_eof332 } - stCase332: + st_case_332: if 33 <= data[p] && data[p] <= 126 { goto st333 } goto st0 st333: if p++; p == pe { - goto _testEof333 + goto _test_eof333 } - stCase333: + st_case_333: if 33 <= data[p] && data[p] <= 126 { goto st334 } goto st0 st334: if p++; p == pe { - goto _testEof334 + goto _test_eof334 } - stCase334: + st_case_334: if 33 <= data[p] && data[p] <= 126 { goto st335 } goto st0 st335: if p++; p == pe { - goto _testEof335 + goto _test_eof335 } - stCase335: + st_case_335: if 33 <= data[p] && data[p] <= 126 { goto st336 } goto st0 st336: if p++; p == pe { - goto _testEof336 + goto _test_eof336 } - stCase336: + st_case_336: if 33 <= data[p] && data[p] <= 126 { goto st337 } goto st0 st337: if p++; p == pe { - goto _testEof337 + goto _test_eof337 } - stCase337: + st_case_337: if 33 <= data[p] && data[p] <= 126 { goto st338 } goto st0 st338: if p++; p == pe { - goto _testEof338 + goto _test_eof338 } - stCase338: + st_case_338: if 33 <= data[p] && data[p] <= 126 { goto st339 } goto st0 st339: if p++; p == pe { - goto _testEof339 + goto _test_eof339 } - stCase339: + st_case_339: if 33 <= data[p] && data[p] <= 126 { goto st340 } goto st0 st340: if p++; p == pe { - goto _testEof340 + goto _test_eof340 } - stCase340: + st_case_340: if 33 <= data[p] && data[p] <= 126 { goto st341 } goto st0 st341: if p++; p == pe { - goto _testEof341 + goto _test_eof341 } - stCase341: + st_case_341: if 33 <= data[p] && data[p] <= 126 { goto st342 } goto st0 st342: if p++; p == pe { - goto _testEof342 + goto _test_eof342 } - stCase342: + st_case_342: if 33 <= data[p] && data[p] <= 126 { goto st343 } goto st0 st343: if p++; p == pe { - goto _testEof343 + goto _test_eof343 } - stCase343: + st_case_343: if 33 <= data[p] && data[p] <= 126 { goto st344 } goto st0 st344: if p++; p == pe { - goto _testEof344 + goto _test_eof344 } - stCase344: + st_case_344: if 33 <= data[p] && data[p] <= 126 { goto st345 } goto st0 st345: if p++; p == pe { - goto _testEof345 + goto _test_eof345 } - stCase345: + st_case_345: if 33 <= data[p] && data[p] <= 126 { goto st346 } goto st0 st346: if p++; p == pe { - goto _testEof346 + goto _test_eof346 } - stCase346: + st_case_346: if 33 <= data[p] && data[p] <= 126 { goto st347 } goto st0 st347: if p++; p == pe { - goto _testEof347 + goto _test_eof347 } - stCase347: + st_case_347: if 33 <= data[p] && data[p] <= 126 { goto st348 } goto st0 st348: if p++; p == pe { - goto _testEof348 + goto _test_eof348 } - stCase348: + st_case_348: if 33 <= data[p] && data[p] <= 126 { goto st349 } goto st0 st349: if p++; p == pe { - goto _testEof349 + goto _test_eof349 } - stCase349: + st_case_349: if 33 <= data[p] && data[p] <= 126 { goto st350 } goto st0 st350: if p++; p == pe { - goto _testEof350 + goto _test_eof350 } - stCase350: + st_case_350: if 33 <= data[p] && data[p] <= 126 { goto st351 } goto st0 st351: if p++; p == pe { - goto _testEof351 + goto _test_eof351 } - stCase351: + st_case_351: if 33 <= data[p] && data[p] <= 126 { goto st352 } goto st0 st352: if p++; p == pe { - goto _testEof352 + goto _test_eof352 } - stCase352: + st_case_352: if 33 <= data[p] && data[p] <= 126 { goto st353 } goto st0 st353: if p++; p == pe { - goto _testEof353 + goto _test_eof353 } - stCase353: + st_case_353: if 33 <= data[p] && data[p] <= 126 { goto st354 } goto st0 st354: if p++; p == pe { - goto _testEof354 + goto _test_eof354 } - stCase354: + st_case_354: if 33 <= data[p] && data[p] <= 126 { goto st355 } goto st0 st355: if p++; p == pe { - goto _testEof355 + goto _test_eof355 } - stCase355: + st_case_355: if 33 <= data[p] && data[p] <= 126 { goto st356 } goto st0 st356: if p++; p == pe { - goto _testEof356 + goto _test_eof356 } - stCase356: + st_case_356: if 33 <= data[p] && data[p] <= 126 { goto st357 } goto st0 st357: if p++; p == pe { - goto _testEof357 + goto _test_eof357 } - stCase357: + st_case_357: goto st0 - stCase40: + st_case_40: if 33 <= data[p] && data[p] <= 126 { goto tr40 } goto st0 - tr40: +tr40: +//line rfc5424/builder.go.rl:18 - pb = p + pb = p - goto st358 + goto st358 st358: if p++; p == pe { - goto _testEof358 + goto _test_eof358 } - stCase358: + st_case_358: +//line rfc5424/builder.go:4454 if 33 <= data[p] && data[p] <= 126 { goto st359 } goto st0 st359: if p++; p == pe { - goto _testEof359 + goto _test_eof359 } - stCase359: + st_case_359: if 33 <= data[p] && data[p] <= 126 { goto st360 } goto st0 st360: if p++; p == pe { - goto _testEof360 + goto _test_eof360 } - stCase360: + st_case_360: if 33 <= data[p] && data[p] <= 126 { goto st361 } goto st0 st361: if p++; p == pe { - goto _testEof361 + goto _test_eof361 } - stCase361: + st_case_361: if 33 <= data[p] && data[p] <= 126 { goto st362 } goto st0 st362: if p++; p == pe { - goto _testEof362 + goto _test_eof362 } - stCase362: + st_case_362: if 33 <= data[p] && data[p] <= 126 { goto st363 } goto st0 st363: if p++; p == pe { - goto _testEof363 + goto _test_eof363 } - stCase363: + st_case_363: if 33 <= data[p] && data[p] <= 126 { goto st364 } goto st0 st364: if p++; p == pe { - goto _testEof364 + goto _test_eof364 } - stCase364: + st_case_364: if 33 <= data[p] && data[p] <= 126 { goto st365 } goto st0 st365: if p++; p == pe { - goto _testEof365 + goto _test_eof365 } - stCase365: + st_case_365: if 33 <= data[p] && data[p] <= 126 { goto st366 } goto st0 st366: if p++; p == pe { - goto _testEof366 + goto _test_eof366 } - stCase366: + st_case_366: if 33 <= data[p] && data[p] <= 126 { goto st367 } goto st0 st367: if p++; p == pe { - goto _testEof367 + goto _test_eof367 } - stCase367: + st_case_367: if 33 <= data[p] && data[p] <= 126 { goto st368 } goto st0 st368: if p++; p == pe { - goto _testEof368 + goto _test_eof368 } - stCase368: + st_case_368: if 33 <= data[p] && data[p] <= 126 { goto st369 } goto st0 st369: if p++; p == pe { - goto _testEof369 + goto _test_eof369 } - stCase369: + st_case_369: if 33 <= data[p] && data[p] <= 126 { goto st370 } goto st0 st370: if p++; p == pe { - goto _testEof370 + goto _test_eof370 } - stCase370: + st_case_370: if 33 <= data[p] && data[p] <= 126 { goto st371 } goto st0 st371: if p++; p == pe { - goto _testEof371 + goto _test_eof371 } - stCase371: + st_case_371: if 33 <= data[p] && data[p] <= 126 { goto st372 } goto st0 st372: if p++; p == pe { - goto _testEof372 + goto _test_eof372 } - stCase372: + st_case_372: if 33 <= data[p] && data[p] <= 126 { goto st373 } goto st0 st373: if p++; p == pe { - goto _testEof373 + goto _test_eof373 } - stCase373: + st_case_373: if 33 <= data[p] && data[p] <= 126 { goto st374 } goto st0 st374: if p++; p == pe { - goto _testEof374 + goto _test_eof374 } - stCase374: + st_case_374: if 33 <= data[p] && data[p] <= 126 { goto st375 } goto st0 st375: if p++; p == pe { - goto _testEof375 + goto _test_eof375 } - stCase375: + st_case_375: if 33 <= data[p] && data[p] <= 126 { goto st376 } goto st0 st376: if p++; p == pe { - goto _testEof376 + goto _test_eof376 } - stCase376: + st_case_376: if 33 <= data[p] && data[p] <= 126 { goto st377 } goto st0 st377: if p++; p == pe { - goto _testEof377 + goto _test_eof377 } - stCase377: + st_case_377: if 33 <= data[p] && data[p] <= 126 { goto st378 } goto st0 st378: if p++; p == pe { - goto _testEof378 + goto _test_eof378 } - stCase378: + st_case_378: if 33 <= data[p] && data[p] <= 126 { goto st379 } goto st0 st379: if p++; p == pe { - goto _testEof379 + goto _test_eof379 } - stCase379: + st_case_379: if 33 <= data[p] && data[p] <= 126 { goto st380 } goto st0 st380: if p++; p == pe { - goto _testEof380 + goto _test_eof380 } - stCase380: + st_case_380: if 33 <= data[p] && data[p] <= 126 { goto st381 } goto st0 st381: if p++; p == pe { - goto _testEof381 + goto _test_eof381 } - stCase381: + st_case_381: if 33 <= data[p] && data[p] <= 126 { goto st382 } goto st0 st382: if p++; p == pe { - goto _testEof382 + goto _test_eof382 } - stCase382: + st_case_382: if 33 <= data[p] && data[p] <= 126 { goto st383 } goto st0 st383: if p++; p == pe { - goto _testEof383 + goto _test_eof383 } - stCase383: + st_case_383: if 33 <= data[p] && data[p] <= 126 { goto st384 } goto st0 st384: if p++; p == pe { - goto _testEof384 + goto _test_eof384 } - stCase384: + st_case_384: if 33 <= data[p] && data[p] <= 126 { goto st385 } goto st0 st385: if p++; p == pe { - goto _testEof385 + goto _test_eof385 } - stCase385: + st_case_385: if 33 <= data[p] && data[p] <= 126 { goto st386 } goto st0 st386: if p++; p == pe { - goto _testEof386 + goto _test_eof386 } - stCase386: + st_case_386: if 33 <= data[p] && data[p] <= 126 { goto st387 } goto st0 st387: if p++; p == pe { - goto _testEof387 + goto _test_eof387 } - stCase387: + st_case_387: if 33 <= data[p] && data[p] <= 126 { goto st388 } goto st0 st388: if p++; p == pe { - goto _testEof388 + goto _test_eof388 } - stCase388: + st_case_388: if 33 <= data[p] && data[p] <= 126 { goto st389 } goto st0 st389: if p++; p == pe { - goto _testEof389 + goto _test_eof389 } - stCase389: + st_case_389: if 33 <= data[p] && data[p] <= 126 { goto st390 } goto st0 st390: if p++; p == pe { - goto _testEof390 + goto _test_eof390 } - stCase390: + st_case_390: if 33 <= data[p] && data[p] <= 126 { goto st391 } goto st0 st391: if p++; p == pe { - goto _testEof391 + goto _test_eof391 } - stCase391: + st_case_391: if 33 <= data[p] && data[p] <= 126 { goto st392 } goto st0 st392: if p++; p == pe { - goto _testEof392 + goto _test_eof392 } - stCase392: + st_case_392: if 33 <= data[p] && data[p] <= 126 { goto st393 } goto st0 st393: if p++; p == pe { - goto _testEof393 + goto _test_eof393 } - stCase393: + st_case_393: if 33 <= data[p] && data[p] <= 126 { goto st394 } goto st0 st394: if p++; p == pe { - goto _testEof394 + goto _test_eof394 } - stCase394: + st_case_394: if 33 <= data[p] && data[p] <= 126 { goto st395 } goto st0 st395: if p++; p == pe { - goto _testEof395 + goto _test_eof395 } - stCase395: + st_case_395: if 33 <= data[p] && data[p] <= 126 { goto st396 } goto st0 st396: if p++; p == pe { - goto _testEof396 + goto _test_eof396 } - stCase396: + st_case_396: if 33 <= data[p] && data[p] <= 126 { goto st397 } goto st0 st397: if p++; p == pe { - goto _testEof397 + goto _test_eof397 } - stCase397: + st_case_397: if 33 <= data[p] && data[p] <= 126 { goto st398 } goto st0 st398: if p++; p == pe { - goto _testEof398 + goto _test_eof398 } - stCase398: + st_case_398: if 33 <= data[p] && data[p] <= 126 { goto st399 } goto st0 st399: if p++; p == pe { - goto _testEof399 + goto _test_eof399 } - stCase399: + st_case_399: if 33 <= data[p] && data[p] <= 126 { goto st400 } goto st0 st400: if p++; p == pe { - goto _testEof400 + goto _test_eof400 } - stCase400: + st_case_400: if 33 <= data[p] && data[p] <= 126 { goto st401 } goto st0 st401: if p++; p == pe { - goto _testEof401 + goto _test_eof401 } - stCase401: + st_case_401: if 33 <= data[p] && data[p] <= 126 { goto st402 } goto st0 st402: if p++; p == pe { - goto _testEof402 + goto _test_eof402 } - stCase402: + st_case_402: if 33 <= data[p] && data[p] <= 126 { goto st403 } goto st0 st403: if p++; p == pe { - goto _testEof403 + goto _test_eof403 } - stCase403: + st_case_403: if 33 <= data[p] && data[p] <= 126 { goto st404 } goto st0 st404: if p++; p == pe { - goto _testEof404 + goto _test_eof404 } - stCase404: + st_case_404: if 33 <= data[p] && data[p] <= 126 { goto st405 } goto st0 st405: if p++; p == pe { - goto _testEof405 + goto _test_eof405 } - stCase405: + st_case_405: if 33 <= data[p] && data[p] <= 126 { goto st406 } goto st0 st406: if p++; p == pe { - goto _testEof406 + goto _test_eof406 } - stCase406: + st_case_406: if 33 <= data[p] && data[p] <= 126 { goto st407 } goto st0 st407: if p++; p == pe { - goto _testEof407 + goto _test_eof407 } - stCase407: + st_case_407: if 33 <= data[p] && data[p] <= 126 { goto st408 } goto st0 st408: if p++; p == pe { - goto _testEof408 + goto _test_eof408 } - stCase408: + st_case_408: if 33 <= data[p] && data[p] <= 126 { goto st409 } goto st0 st409: if p++; p == pe { - goto _testEof409 + goto _test_eof409 } - stCase409: + st_case_409: if 33 <= data[p] && data[p] <= 126 { goto st410 } goto st0 st410: if p++; p == pe { - goto _testEof410 + goto _test_eof410 } - stCase410: + st_case_410: if 33 <= data[p] && data[p] <= 126 { goto st411 } goto st0 st411: if p++; p == pe { - goto _testEof411 + goto _test_eof411 } - stCase411: + st_case_411: if 33 <= data[p] && data[p] <= 126 { goto st412 } goto st0 st412: if p++; p == pe { - goto _testEof412 + goto _test_eof412 } - stCase412: + st_case_412: if 33 <= data[p] && data[p] <= 126 { goto st413 } goto st0 st413: if p++; p == pe { - goto _testEof413 + goto _test_eof413 } - stCase413: + st_case_413: if 33 <= data[p] && data[p] <= 126 { goto st414 } goto st0 st414: if p++; p == pe { - goto _testEof414 + goto _test_eof414 } - stCase414: + st_case_414: if 33 <= data[p] && data[p] <= 126 { goto st415 } goto st0 st415: if p++; p == pe { - goto _testEof415 + goto _test_eof415 } - stCase415: + st_case_415: if 33 <= data[p] && data[p] <= 126 { goto st416 } goto st0 st416: if p++; p == pe { - goto _testEof416 + goto _test_eof416 } - stCase416: + st_case_416: if 33 <= data[p] && data[p] <= 126 { goto st417 } goto st0 st417: if p++; p == pe { - goto _testEof417 + goto _test_eof417 } - stCase417: + st_case_417: if 33 <= data[p] && data[p] <= 126 { goto st418 } goto st0 st418: if p++; p == pe { - goto _testEof418 + goto _test_eof418 } - stCase418: + st_case_418: if 33 <= data[p] && data[p] <= 126 { goto st419 } goto st0 st419: if p++; p == pe { - goto _testEof419 + goto _test_eof419 } - stCase419: + st_case_419: if 33 <= data[p] && data[p] <= 126 { goto st420 } goto st0 st420: if p++; p == pe { - goto _testEof420 + goto _test_eof420 } - stCase420: + st_case_420: if 33 <= data[p] && data[p] <= 126 { goto st421 } goto st0 st421: if p++; p == pe { - goto _testEof421 + goto _test_eof421 } - stCase421: + st_case_421: if 33 <= data[p] && data[p] <= 126 { goto st422 } goto st0 st422: if p++; p == pe { - goto _testEof422 + goto _test_eof422 } - stCase422: + st_case_422: if 33 <= data[p] && data[p] <= 126 { goto st423 } goto st0 st423: if p++; p == pe { - goto _testEof423 + goto _test_eof423 } - stCase423: + st_case_423: if 33 <= data[p] && data[p] <= 126 { goto st424 } goto st0 st424: if p++; p == pe { - goto _testEof424 + goto _test_eof424 } - stCase424: + st_case_424: if 33 <= data[p] && data[p] <= 126 { goto st425 } goto st0 st425: if p++; p == pe { - goto _testEof425 + goto _test_eof425 } - stCase425: + st_case_425: if 33 <= data[p] && data[p] <= 126 { goto st426 } goto st0 st426: if p++; p == pe { - goto _testEof426 + goto _test_eof426 } - stCase426: + st_case_426: if 33 <= data[p] && data[p] <= 126 { goto st427 } goto st0 st427: if p++; p == pe { - goto _testEof427 + goto _test_eof427 } - stCase427: + st_case_427: if 33 <= data[p] && data[p] <= 126 { goto st428 } goto st0 st428: if p++; p == pe { - goto _testEof428 + goto _test_eof428 } - stCase428: + st_case_428: if 33 <= data[p] && data[p] <= 126 { goto st429 } goto st0 st429: if p++; p == pe { - goto _testEof429 + goto _test_eof429 } - stCase429: + st_case_429: if 33 <= data[p] && data[p] <= 126 { goto st430 } goto st0 st430: if p++; p == pe { - goto _testEof430 + goto _test_eof430 } - stCase430: + st_case_430: if 33 <= data[p] && data[p] <= 126 { goto st431 } goto st0 st431: if p++; p == pe { - goto _testEof431 + goto _test_eof431 } - stCase431: + st_case_431: if 33 <= data[p] && data[p] <= 126 { goto st432 } goto st0 st432: if p++; p == pe { - goto _testEof432 + goto _test_eof432 } - stCase432: + st_case_432: if 33 <= data[p] && data[p] <= 126 { goto st433 } goto st0 st433: if p++; p == pe { - goto _testEof433 + goto _test_eof433 } - stCase433: + st_case_433: if 33 <= data[p] && data[p] <= 126 { goto st434 } goto st0 st434: if p++; p == pe { - goto _testEof434 + goto _test_eof434 } - stCase434: + st_case_434: if 33 <= data[p] && data[p] <= 126 { goto st435 } goto st0 st435: if p++; p == pe { - goto _testEof435 + goto _test_eof435 } - stCase435: + st_case_435: if 33 <= data[p] && data[p] <= 126 { goto st436 } goto st0 st436: if p++; p == pe { - goto _testEof436 + goto _test_eof436 } - stCase436: + st_case_436: if 33 <= data[p] && data[p] <= 126 { goto st437 } goto st0 st437: if p++; p == pe { - goto _testEof437 + goto _test_eof437 } - stCase437: + st_case_437: if 33 <= data[p] && data[p] <= 126 { goto st438 } goto st0 st438: if p++; p == pe { - goto _testEof438 + goto _test_eof438 } - stCase438: + st_case_438: if 33 <= data[p] && data[p] <= 126 { goto st439 } goto st0 st439: if p++; p == pe { - goto _testEof439 + goto _test_eof439 } - stCase439: + st_case_439: if 33 <= data[p] && data[p] <= 126 { goto st440 } goto st0 st440: if p++; p == pe { - goto _testEof440 + goto _test_eof440 } - stCase440: + st_case_440: if 33 <= data[p] && data[p] <= 126 { goto st441 } goto st0 st441: if p++; p == pe { - goto _testEof441 + goto _test_eof441 } - stCase441: + st_case_441: if 33 <= data[p] && data[p] <= 126 { goto st442 } goto st0 st442: if p++; p == pe { - goto _testEof442 + goto _test_eof442 } - stCase442: + st_case_442: if 33 <= data[p] && data[p] <= 126 { goto st443 } goto st0 st443: if p++; p == pe { - goto _testEof443 + goto _test_eof443 } - stCase443: + st_case_443: if 33 <= data[p] && data[p] <= 126 { goto st444 } goto st0 st444: if p++; p == pe { - goto _testEof444 + goto _test_eof444 } - stCase444: + st_case_444: if 33 <= data[p] && data[p] <= 126 { goto st445 } goto st0 st445: if p++; p == pe { - goto _testEof445 + goto _test_eof445 } - stCase445: + st_case_445: if 33 <= data[p] && data[p] <= 126 { goto st446 } goto st0 st446: if p++; p == pe { - goto _testEof446 + goto _test_eof446 } - stCase446: + st_case_446: if 33 <= data[p] && data[p] <= 126 { goto st447 } goto st0 st447: if p++; p == pe { - goto _testEof447 + goto _test_eof447 } - stCase447: + st_case_447: if 33 <= data[p] && data[p] <= 126 { goto st448 } goto st0 st448: if p++; p == pe { - goto _testEof448 + goto _test_eof448 } - stCase448: + st_case_448: if 33 <= data[p] && data[p] <= 126 { goto st449 } goto st0 st449: if p++; p == pe { - goto _testEof449 + goto _test_eof449 } - stCase449: + st_case_449: if 33 <= data[p] && data[p] <= 126 { goto st450 } goto st0 st450: if p++; p == pe { - goto _testEof450 + goto _test_eof450 } - stCase450: + st_case_450: if 33 <= data[p] && data[p] <= 126 { goto st451 } goto st0 st451: if p++; p == pe { - goto _testEof451 + goto _test_eof451 } - stCase451: + st_case_451: if 33 <= data[p] && data[p] <= 126 { goto st452 } goto st0 st452: if p++; p == pe { - goto _testEof452 + goto _test_eof452 } - stCase452: + st_case_452: if 33 <= data[p] && data[p] <= 126 { goto st453 } goto st0 st453: if p++; p == pe { - goto _testEof453 + goto _test_eof453 } - stCase453: + st_case_453: if 33 <= data[p] && data[p] <= 126 { goto st454 } goto st0 st454: if p++; p == pe { - goto _testEof454 + goto _test_eof454 } - stCase454: + st_case_454: if 33 <= data[p] && data[p] <= 126 { goto st455 } goto st0 st455: if p++; p == pe { - goto _testEof455 + goto _test_eof455 } - stCase455: + st_case_455: if 33 <= data[p] && data[p] <= 126 { goto st456 } goto st0 st456: if p++; p == pe { - goto _testEof456 + goto _test_eof456 } - stCase456: + st_case_456: if 33 <= data[p] && data[p] <= 126 { goto st457 } goto st0 st457: if p++; p == pe { - goto _testEof457 + goto _test_eof457 } - stCase457: + st_case_457: if 33 <= data[p] && data[p] <= 126 { goto st458 } goto st0 st458: if p++; p == pe { - goto _testEof458 + goto _test_eof458 } - stCase458: + st_case_458: if 33 <= data[p] && data[p] <= 126 { goto st459 } goto st0 st459: if p++; p == pe { - goto _testEof459 + goto _test_eof459 } - stCase459: + st_case_459: if 33 <= data[p] && data[p] <= 126 { goto st460 } goto st0 st460: if p++; p == pe { - goto _testEof460 + goto _test_eof460 } - stCase460: + st_case_460: if 33 <= data[p] && data[p] <= 126 { goto st461 } goto st0 st461: if p++; p == pe { - goto _testEof461 + goto _test_eof461 } - stCase461: + st_case_461: if 33 <= data[p] && data[p] <= 126 { goto st462 } goto st0 st462: if p++; p == pe { - goto _testEof462 + goto _test_eof462 } - stCase462: + st_case_462: if 33 <= data[p] && data[p] <= 126 { goto st463 } goto st0 st463: if p++; p == pe { - goto _testEof463 + goto _test_eof463 } - stCase463: + st_case_463: if 33 <= data[p] && data[p] <= 126 { goto st464 } goto st0 st464: if p++; p == pe { - goto _testEof464 + goto _test_eof464 } - stCase464: + st_case_464: if 33 <= data[p] && data[p] <= 126 { goto st465 } goto st0 st465: if p++; p == pe { - goto _testEof465 + goto _test_eof465 } - stCase465: + st_case_465: if 33 <= data[p] && data[p] <= 126 { goto st466 } goto st0 st466: if p++; p == pe { - goto _testEof466 + goto _test_eof466 } - stCase466: + st_case_466: if 33 <= data[p] && data[p] <= 126 { goto st467 } goto st0 st467: if p++; p == pe { - goto _testEof467 + goto _test_eof467 } - stCase467: + st_case_467: if 33 <= data[p] && data[p] <= 126 { goto st468 } goto st0 st468: if p++; p == pe { - goto _testEof468 + goto _test_eof468 } - stCase468: + st_case_468: if 33 <= data[p] && data[p] <= 126 { goto st469 } goto st0 st469: if p++; p == pe { - goto _testEof469 + goto _test_eof469 } - stCase469: + st_case_469: if 33 <= data[p] && data[p] <= 126 { goto st470 } goto st0 st470: if p++; p == pe { - goto _testEof470 + goto _test_eof470 } - stCase470: + st_case_470: if 33 <= data[p] && data[p] <= 126 { goto st471 } goto st0 st471: if p++; p == pe { - goto _testEof471 + goto _test_eof471 } - stCase471: + st_case_471: if 33 <= data[p] && data[p] <= 126 { goto st472 } goto st0 st472: if p++; p == pe { - goto _testEof472 + goto _test_eof472 } - stCase472: + st_case_472: if 33 <= data[p] && data[p] <= 126 { goto st473 } goto st0 st473: if p++; p == pe { - goto _testEof473 + goto _test_eof473 } - stCase473: + st_case_473: if 33 <= data[p] && data[p] <= 126 { goto st474 } goto st0 st474: if p++; p == pe { - goto _testEof474 + goto _test_eof474 } - stCase474: + st_case_474: if 33 <= data[p] && data[p] <= 126 { goto st475 } goto st0 st475: if p++; p == pe { - goto _testEof475 + goto _test_eof475 } - stCase475: + st_case_475: if 33 <= data[p] && data[p] <= 126 { goto st476 } goto st0 st476: if p++; p == pe { - goto _testEof476 + goto _test_eof476 } - stCase476: + st_case_476: if 33 <= data[p] && data[p] <= 126 { goto st477 } goto st0 st477: if p++; p == pe { - goto _testEof477 + goto _test_eof477 } - stCase477: + st_case_477: if 33 <= data[p] && data[p] <= 126 { goto st478 } goto st0 st478: if p++; p == pe { - goto _testEof478 + goto _test_eof478 } - stCase478: + st_case_478: if 33 <= data[p] && data[p] <= 126 { goto st479 } goto st0 st479: if p++; p == pe { - goto _testEof479 + goto _test_eof479 } - stCase479: + st_case_479: if 33 <= data[p] && data[p] <= 126 { goto st480 } goto st0 st480: if p++; p == pe { - goto _testEof480 + goto _test_eof480 } - stCase480: + st_case_480: if 33 <= data[p] && data[p] <= 126 { goto st481 } goto st0 st481: if p++; p == pe { - goto _testEof481 + goto _test_eof481 } - stCase481: + st_case_481: if 33 <= data[p] && data[p] <= 126 { goto st482 } goto st0 st482: if p++; p == pe { - goto _testEof482 + goto _test_eof482 } - stCase482: + st_case_482: if 33 <= data[p] && data[p] <= 126 { goto st483 } goto st0 st483: if p++; p == pe { - goto _testEof483 + goto _test_eof483 } - stCase483: + st_case_483: if 33 <= data[p] && data[p] <= 126 { goto st484 } goto st0 st484: if p++; p == pe { - goto _testEof484 + goto _test_eof484 } - stCase484: + st_case_484: if 33 <= data[p] && data[p] <= 126 { goto st485 } goto st0 st485: if p++; p == pe { - goto _testEof485 + goto _test_eof485 } - stCase485: + st_case_485: goto st0 - stCase41: + st_case_41: if 33 <= data[p] && data[p] <= 126 { goto tr41 } goto st0 - tr41: +tr41: +//line rfc5424/builder.go.rl:18 - pb = p + pb = p - goto st486 + goto st486 st486: if p++; p == pe { - goto _testEof486 + goto _test_eof486 } - stCase486: + st_case_486: +//line rfc5424/builder.go:5615 if 33 <= data[p] && data[p] <= 126 { goto st487 } goto st0 st487: if p++; p == pe { - goto _testEof487 + goto _test_eof487 } - stCase487: + st_case_487: if 33 <= data[p] && data[p] <= 126 { goto st488 } goto st0 st488: if p++; p == pe { - goto _testEof488 + goto _test_eof488 } - stCase488: + st_case_488: if 33 <= data[p] && data[p] <= 126 { goto st489 } goto st0 st489: if p++; p == pe { - goto _testEof489 + goto _test_eof489 } - stCase489: + st_case_489: if 33 <= data[p] && data[p] <= 126 { goto st490 } goto st0 st490: if p++; p == pe { - goto _testEof490 + goto _test_eof490 } - stCase490: + st_case_490: if 33 <= data[p] && data[p] <= 126 { goto st491 } goto st0 st491: if p++; p == pe { - goto _testEof491 + goto _test_eof491 } - stCase491: + st_case_491: if 33 <= data[p] && data[p] <= 126 { goto st492 } goto st0 st492: if p++; p == pe { - goto _testEof492 + goto _test_eof492 } - stCase492: + st_case_492: if 33 <= data[p] && data[p] <= 126 { goto st493 } goto st0 st493: if p++; p == pe { - goto _testEof493 + goto _test_eof493 } - stCase493: + st_case_493: if 33 <= data[p] && data[p] <= 126 { goto st494 } goto st0 st494: if p++; p == pe { - goto _testEof494 + goto _test_eof494 } - stCase494: + st_case_494: if 33 <= data[p] && data[p] <= 126 { goto st495 } goto st0 st495: if p++; p == pe { - goto _testEof495 + goto _test_eof495 } - stCase495: + st_case_495: if 33 <= data[p] && data[p] <= 126 { goto st496 } goto st0 st496: if p++; p == pe { - goto _testEof496 + goto _test_eof496 } - stCase496: + st_case_496: if 33 <= data[p] && data[p] <= 126 { goto st497 } goto st0 st497: if p++; p == pe { - goto _testEof497 + goto _test_eof497 } - stCase497: + st_case_497: if 33 <= data[p] && data[p] <= 126 { goto st498 } goto st0 st498: if p++; p == pe { - goto _testEof498 + goto _test_eof498 } - stCase498: + st_case_498: if 33 <= data[p] && data[p] <= 126 { goto st499 } goto st0 st499: if p++; p == pe { - goto _testEof499 + goto _test_eof499 } - stCase499: + st_case_499: if 33 <= data[p] && data[p] <= 126 { goto st500 } goto st0 st500: if p++; p == pe { - goto _testEof500 + goto _test_eof500 } - stCase500: + st_case_500: if 33 <= data[p] && data[p] <= 126 { goto st501 } goto st0 st501: if p++; p == pe { - goto _testEof501 + goto _test_eof501 } - stCase501: + st_case_501: if 33 <= data[p] && data[p] <= 126 { goto st502 } goto st0 st502: if p++; p == pe { - goto _testEof502 + goto _test_eof502 } - stCase502: + st_case_502: if 33 <= data[p] && data[p] <= 126 { goto st503 } goto st0 st503: if p++; p == pe { - goto _testEof503 + goto _test_eof503 } - stCase503: + st_case_503: if 33 <= data[p] && data[p] <= 126 { goto st504 } goto st0 st504: if p++; p == pe { - goto _testEof504 + goto _test_eof504 } - stCase504: + st_case_504: if 33 <= data[p] && data[p] <= 126 { goto st505 } goto st0 st505: if p++; p == pe { - goto _testEof505 + goto _test_eof505 } - stCase505: + st_case_505: if 33 <= data[p] && data[p] <= 126 { goto st506 } goto st0 st506: if p++; p == pe { - goto _testEof506 + goto _test_eof506 } - stCase506: + st_case_506: if 33 <= data[p] && data[p] <= 126 { goto st507 } goto st0 st507: if p++; p == pe { - goto _testEof507 + goto _test_eof507 } - stCase507: + st_case_507: if 33 <= data[p] && data[p] <= 126 { goto st508 } goto st0 st508: if p++; p == pe { - goto _testEof508 + goto _test_eof508 } - stCase508: + st_case_508: if 33 <= data[p] && data[p] <= 126 { goto st509 } goto st0 st509: if p++; p == pe { - goto _testEof509 + goto _test_eof509 } - stCase509: + st_case_509: if 33 <= data[p] && data[p] <= 126 { goto st510 } goto st0 st510: if p++; p == pe { - goto _testEof510 + goto _test_eof510 } - stCase510: + st_case_510: if 33 <= data[p] && data[p] <= 126 { goto st511 } goto st0 st511: if p++; p == pe { - goto _testEof511 + goto _test_eof511 } - stCase511: + st_case_511: if 33 <= data[p] && data[p] <= 126 { goto st512 } goto st0 st512: if p++; p == pe { - goto _testEof512 + goto _test_eof512 } - stCase512: + st_case_512: if 33 <= data[p] && data[p] <= 126 { goto st513 } goto st0 st513: if p++; p == pe { - goto _testEof513 + goto _test_eof513 } - stCase513: + st_case_513: if 33 <= data[p] && data[p] <= 126 { goto st514 } goto st0 st514: if p++; p == pe { - goto _testEof514 + goto _test_eof514 } - stCase514: + st_case_514: if 33 <= data[p] && data[p] <= 126 { goto st515 } goto st0 st515: if p++; p == pe { - goto _testEof515 + goto _test_eof515 } - stCase515: + st_case_515: if 33 <= data[p] && data[p] <= 126 { goto st516 } goto st0 st516: if p++; p == pe { - goto _testEof516 + goto _test_eof516 } - stCase516: + st_case_516: if 33 <= data[p] && data[p] <= 126 { goto st517 } goto st0 st517: if p++; p == pe { - goto _testEof517 + goto _test_eof517 } - stCase517: + st_case_517: goto st0 - stCase42: + st_case_42: if data[p] == 33 { goto tr42 } @@ -5884,16 +5909,18 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto tr42 } goto st0 - tr42: +tr42: +//line rfc5424/builder.go.rl:18 - pb = p + pb = p - goto st518 + goto st518 st518: if p++; p == pe { - goto _testEof518 + goto _test_eof518 } - stCase518: + st_case_518: +//line rfc5424/builder.go:5924 if data[p] == 33 { goto st519 } @@ -5912,9 +5939,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st519: if p++; p == pe { - goto _testEof519 + goto _test_eof519 } - stCase519: + st_case_519: if data[p] == 33 { goto st520 } @@ -5933,9 +5960,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st520: if p++; p == pe { - goto _testEof520 + goto _test_eof520 } - stCase520: + st_case_520: if data[p] == 33 { goto st521 } @@ -5954,9 +5981,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st521: if p++; p == pe { - goto _testEof521 + goto _test_eof521 } - stCase521: + st_case_521: if data[p] == 33 { goto st522 } @@ -5975,9 +6002,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st522: if p++; p == pe { - goto _testEof522 + goto _test_eof522 } - stCase522: + st_case_522: if data[p] == 33 { goto st523 } @@ -5996,9 +6023,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st523: if p++; p == pe { - goto _testEof523 + goto _test_eof523 } - stCase523: + st_case_523: if data[p] == 33 { goto st524 } @@ -6017,9 +6044,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st524: if p++; p == pe { - goto _testEof524 + goto _test_eof524 } - stCase524: + st_case_524: if data[p] == 33 { goto st525 } @@ -6038,9 +6065,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st525: if p++; p == pe { - goto _testEof525 + goto _test_eof525 } - stCase525: + st_case_525: if data[p] == 33 { goto st526 } @@ -6059,9 +6086,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st526: if p++; p == pe { - goto _testEof526 + goto _test_eof526 } - stCase526: + st_case_526: if data[p] == 33 { goto st527 } @@ -6080,9 +6107,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st527: if p++; p == pe { - goto _testEof527 + goto _test_eof527 } - stCase527: + st_case_527: if data[p] == 33 { goto st528 } @@ -6101,9 +6128,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st528: if p++; p == pe { - goto _testEof528 + goto _test_eof528 } - stCase528: + st_case_528: if data[p] == 33 { goto st529 } @@ -6122,9 +6149,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st529: if p++; p == pe { - goto _testEof529 + goto _test_eof529 } - stCase529: + st_case_529: if data[p] == 33 { goto st530 } @@ -6143,9 +6170,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st530: if p++; p == pe { - goto _testEof530 + goto _test_eof530 } - stCase530: + st_case_530: if data[p] == 33 { goto st531 } @@ -6164,9 +6191,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st531: if p++; p == pe { - goto _testEof531 + goto _test_eof531 } - stCase531: + st_case_531: if data[p] == 33 { goto st532 } @@ -6185,9 +6212,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st532: if p++; p == pe { - goto _testEof532 + goto _test_eof532 } - stCase532: + st_case_532: if data[p] == 33 { goto st533 } @@ -6206,9 +6233,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st533: if p++; p == pe { - goto _testEof533 + goto _test_eof533 } - stCase533: + st_case_533: if data[p] == 33 { goto st534 } @@ -6227,9 +6254,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st534: if p++; p == pe { - goto _testEof534 + goto _test_eof534 } - stCase534: + st_case_534: if data[p] == 33 { goto st535 } @@ -6248,9 +6275,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st535: if p++; p == pe { - goto _testEof535 + goto _test_eof535 } - stCase535: + st_case_535: if data[p] == 33 { goto st536 } @@ -6269,9 +6296,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st536: if p++; p == pe { - goto _testEof536 + goto _test_eof536 } - stCase536: + st_case_536: if data[p] == 33 { goto st537 } @@ -6290,9 +6317,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st537: if p++; p == pe { - goto _testEof537 + goto _test_eof537 } - stCase537: + st_case_537: if data[p] == 33 { goto st538 } @@ -6311,9 +6338,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st538: if p++; p == pe { - goto _testEof538 + goto _test_eof538 } - stCase538: + st_case_538: if data[p] == 33 { goto st539 } @@ -6332,9 +6359,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st539: if p++; p == pe { - goto _testEof539 + goto _test_eof539 } - stCase539: + st_case_539: if data[p] == 33 { goto st540 } @@ -6353,9 +6380,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st540: if p++; p == pe { - goto _testEof540 + goto _test_eof540 } - stCase540: + st_case_540: if data[p] == 33 { goto st541 } @@ -6374,9 +6401,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st541: if p++; p == pe { - goto _testEof541 + goto _test_eof541 } - stCase541: + st_case_541: if data[p] == 33 { goto st542 } @@ -6395,9 +6422,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st542: if p++; p == pe { - goto _testEof542 + goto _test_eof542 } - stCase542: + st_case_542: if data[p] == 33 { goto st543 } @@ -6416,9 +6443,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st543: if p++; p == pe { - goto _testEof543 + goto _test_eof543 } - stCase543: + st_case_543: if data[p] == 33 { goto st544 } @@ -6437,9 +6464,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st544: if p++; p == pe { - goto _testEof544 + goto _test_eof544 } - stCase544: + st_case_544: if data[p] == 33 { goto st545 } @@ -6458,9 +6485,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st545: if p++; p == pe { - goto _testEof545 + goto _test_eof545 } - stCase545: + st_case_545: if data[p] == 33 { goto st546 } @@ -6479,9 +6506,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st546: if p++; p == pe { - goto _testEof546 + goto _test_eof546 } - stCase546: + st_case_546: if data[p] == 33 { goto st547 } @@ -6500,9 +6527,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st547: if p++; p == pe { - goto _testEof547 + goto _test_eof547 } - stCase547: + st_case_547: if data[p] == 33 { goto st548 } @@ -6521,9 +6548,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st548: if p++; p == pe { - goto _testEof548 + goto _test_eof548 } - stCase548: + st_case_548: if data[p] == 33 { goto st549 } @@ -6542,11 +6569,11 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st549: if p++; p == pe { - goto _testEof549 + goto _test_eof549 } - stCase549: + st_case_549: goto st0 - stCase43: + st_case_43: if data[p] == 33 { goto tr43 } @@ -6563,16 +6590,18 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto tr43 } goto st0 - tr43: +tr43: +//line rfc5424/builder.go.rl:18 - pb = p + pb = p - goto st550 + goto st550 st550: if p++; p == pe { - goto _testEof550 + goto _test_eof550 } - stCase550: + st_case_550: +//line rfc5424/builder.go:6605 if data[p] == 33 { goto st551 } @@ -6591,9 +6620,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st551: if p++; p == pe { - goto _testEof551 + goto _test_eof551 } - stCase551: + st_case_551: if data[p] == 33 { goto st552 } @@ -6612,9 +6641,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st552: if p++; p == pe { - goto _testEof552 + goto _test_eof552 } - stCase552: + st_case_552: if data[p] == 33 { goto st553 } @@ -6633,9 +6662,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st553: if p++; p == pe { - goto _testEof553 + goto _test_eof553 } - stCase553: + st_case_553: if data[p] == 33 { goto st554 } @@ -6654,9 +6683,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st554: if p++; p == pe { - goto _testEof554 + goto _test_eof554 } - stCase554: + st_case_554: if data[p] == 33 { goto st555 } @@ -6675,9 +6704,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st555: if p++; p == pe { - goto _testEof555 + goto _test_eof555 } - stCase555: + st_case_555: if data[p] == 33 { goto st556 } @@ -6696,9 +6725,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st556: if p++; p == pe { - goto _testEof556 + goto _test_eof556 } - stCase556: + st_case_556: if data[p] == 33 { goto st557 } @@ -6717,9 +6746,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st557: if p++; p == pe { - goto _testEof557 + goto _test_eof557 } - stCase557: + st_case_557: if data[p] == 33 { goto st558 } @@ -6738,9 +6767,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st558: if p++; p == pe { - goto _testEof558 + goto _test_eof558 } - stCase558: + st_case_558: if data[p] == 33 { goto st559 } @@ -6759,9 +6788,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st559: if p++; p == pe { - goto _testEof559 + goto _test_eof559 } - stCase559: + st_case_559: if data[p] == 33 { goto st560 } @@ -6780,9 +6809,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st560: if p++; p == pe { - goto _testEof560 + goto _test_eof560 } - stCase560: + st_case_560: if data[p] == 33 { goto st561 } @@ -6801,9 +6830,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st561: if p++; p == pe { - goto _testEof561 + goto _test_eof561 } - stCase561: + st_case_561: if data[p] == 33 { goto st562 } @@ -6822,9 +6851,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st562: if p++; p == pe { - goto _testEof562 + goto _test_eof562 } - stCase562: + st_case_562: if data[p] == 33 { goto st563 } @@ -6843,9 +6872,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st563: if p++; p == pe { - goto _testEof563 + goto _test_eof563 } - stCase563: + st_case_563: if data[p] == 33 { goto st564 } @@ -6864,9 +6893,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st564: if p++; p == pe { - goto _testEof564 + goto _test_eof564 } - stCase564: + st_case_564: if data[p] == 33 { goto st565 } @@ -6885,9 +6914,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st565: if p++; p == pe { - goto _testEof565 + goto _test_eof565 } - stCase565: + st_case_565: if data[p] == 33 { goto st566 } @@ -6906,9 +6935,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st566: if p++; p == pe { - goto _testEof566 + goto _test_eof566 } - stCase566: + st_case_566: if data[p] == 33 { goto st567 } @@ -6927,9 +6956,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st567: if p++; p == pe { - goto _testEof567 + goto _test_eof567 } - stCase567: + st_case_567: if data[p] == 33 { goto st568 } @@ -6948,9 +6977,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st568: if p++; p == pe { - goto _testEof568 + goto _test_eof568 } - stCase568: + st_case_568: if data[p] == 33 { goto st569 } @@ -6969,9 +6998,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st569: if p++; p == pe { - goto _testEof569 + goto _test_eof569 } - stCase569: + st_case_569: if data[p] == 33 { goto st570 } @@ -6990,9 +7019,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st570: if p++; p == pe { - goto _testEof570 + goto _test_eof570 } - stCase570: + st_case_570: if data[p] == 33 { goto st571 } @@ -7011,9 +7040,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st571: if p++; p == pe { - goto _testEof571 + goto _test_eof571 } - stCase571: + st_case_571: if data[p] == 33 { goto st572 } @@ -7032,9 +7061,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st572: if p++; p == pe { - goto _testEof572 + goto _test_eof572 } - stCase572: + st_case_572: if data[p] == 33 { goto st573 } @@ -7053,9 +7082,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st573: if p++; p == pe { - goto _testEof573 + goto _test_eof573 } - stCase573: + st_case_573: if data[p] == 33 { goto st574 } @@ -7074,9 +7103,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st574: if p++; p == pe { - goto _testEof574 + goto _test_eof574 } - stCase574: + st_case_574: if data[p] == 33 { goto st575 } @@ -7095,9 +7124,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st575: if p++; p == pe { - goto _testEof575 + goto _test_eof575 } - stCase575: + st_case_575: if data[p] == 33 { goto st576 } @@ -7116,9 +7145,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st576: if p++; p == pe { - goto _testEof576 + goto _test_eof576 } - stCase576: + st_case_576: if data[p] == 33 { goto st577 } @@ -7137,9 +7166,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st577: if p++; p == pe { - goto _testEof577 + goto _test_eof577 } - stCase577: + st_case_577: if data[p] == 33 { goto st578 } @@ -7158,9 +7187,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st578: if p++; p == pe { - goto _testEof578 + goto _test_eof578 } - stCase578: + st_case_578: if data[p] == 33 { goto st579 } @@ -7179,9 +7208,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st579: if p++; p == pe { - goto _testEof579 + goto _test_eof579 } - stCase579: + st_case_579: if data[p] == 33 { goto st580 } @@ -7200,9 +7229,9 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st580: if p++; p == pe { - goto _testEof580 + goto _test_eof580 } - stCase580: + st_case_580: if data[p] == 33 { goto st581 } @@ -7221,11 +7250,11 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st0 st581: if p++; p == pe { - goto _testEof581 + goto _test_eof581 } - stCase581: + st_case_581: goto st0 - stCase582: + st_case_582: switch data[p] { case 34: goto st0 @@ -7265,16 +7294,18 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto tr574 } goto tr570 - tr570: +tr570: +//line rfc5424/builder.go.rl:18 - pb = p + pb = p - goto st583 + goto st583 st583: if p++; p == pe { - goto _testEof583 + goto _test_eof583 } - stCase583: + st_case_583: +//line rfc5424/builder.go:7309 switch data[p] { case 34: goto st0 @@ -7314,23 +7345,28 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st47 } goto st583 - tr571: +tr571: +//line rfc5424/builder.go.rl:18 - pb = p + pb = p - backslashes = append(backslashes, p) +//line rfc5424/builder.go.rl:70 - goto st44 - tr579: + backslashes = append(backslashes, p) - backslashes = append(backslashes, p) + goto st44 +tr579: +//line rfc5424/builder.go.rl:70 - goto st44 + backslashes = append(backslashes, p) + + goto st44 st44: if p++; p == pe { - goto _testEof44 + goto _test_eof44 } - stCase44: + st_case_44: +//line rfc5424/builder.go:7370 if data[p] == 34 { goto st583 } @@ -7338,1941 +7374,821 @@ func (sm *SyslogMessage) set(from entrypoint, value string) *SyslogMessage { goto st583 } goto st0 - tr572: +tr572: +//line rfc5424/builder.go.rl:18 - pb = p + pb = p - goto st45 + goto st45 st45: if p++; p == pe { - goto _testEof45 + goto _test_eof45 } - stCase45: + st_case_45: +//line rfc5424/builder.go:7389 if 128 <= data[p] && data[p] <= 191 { goto st583 } goto st0 - tr573: +tr573: +//line rfc5424/builder.go.rl:18 - pb = p + pb = p - goto st46 + goto st46 st46: if p++; p == pe { - goto _testEof46 + goto _test_eof46 } - stCase46: + st_case_46: +//line rfc5424/builder.go:7405 if 160 <= data[p] && data[p] <= 191 { goto st45 } goto st0 - tr574: +tr574: +//line rfc5424/builder.go.rl:18 - pb = p + pb = p - goto st47 + goto st47 st47: if p++; p == pe { - goto _testEof47 + goto _test_eof47 } - stCase47: + st_case_47: +//line rfc5424/builder.go:7421 if 128 <= data[p] && data[p] <= 191 { goto st45 } goto st0 - tr575: +tr575: +//line rfc5424/builder.go.rl:18 - pb = p + pb = p - goto st48 + goto st48 st48: if p++; p == pe { - goto _testEof48 + goto _test_eof48 } - stCase48: + st_case_48: +//line rfc5424/builder.go:7437 if 128 <= data[p] && data[p] <= 159 { goto st45 } goto st0 - tr576: +tr576: +//line rfc5424/builder.go.rl:18 - pb = p + pb = p - goto st49 + goto st49 st49: if p++; p == pe { - goto _testEof49 + goto _test_eof49 } - stCase49: + st_case_49: +//line rfc5424/builder.go:7453 if 144 <= data[p] && data[p] <= 191 { goto st47 } goto st0 - tr577: +tr577: +//line rfc5424/builder.go.rl:18 - pb = p + pb = p - goto st50 + goto st50 st50: if p++; p == pe { - goto _testEof50 + goto _test_eof50 } - stCase50: + st_case_50: +//line rfc5424/builder.go:7469 if 128 <= data[p] && data[p] <= 191 { goto st47 } goto st0 - tr578: +tr578: +//line rfc5424/builder.go.rl:18 - pb = p + pb = p - goto st51 + goto st51 st51: if p++; p == pe { - goto _testEof51 + goto _test_eof51 } - stCase51: + st_case_51: +//line rfc5424/builder.go:7485 if 128 <= data[p] && data[p] <= 143 { goto st47 } goto st0 - stOut: - _testEof53: - cs = 53 - goto _testEof - _testEof2: - cs = 2 - goto _testEof - _testEof3: - cs = 3 - goto _testEof - _testEof4: - cs = 4 - goto _testEof - _testEof5: - cs = 5 - goto _testEof - _testEof6: - cs = 6 - goto _testEof - _testEof7: - cs = 7 - goto _testEof - _testEof8: - cs = 8 - goto _testEof - _testEof9: - cs = 9 - goto _testEof - _testEof10: - cs = 10 - goto _testEof - _testEof11: - cs = 11 - goto _testEof - _testEof12: - cs = 12 - goto _testEof - _testEof13: - cs = 13 - goto _testEof - _testEof14: - cs = 14 - goto _testEof - _testEof15: - cs = 15 - goto _testEof - _testEof16: - cs = 16 - goto _testEof - _testEof17: - cs = 17 - goto _testEof - _testEof18: - cs = 18 - goto _testEof - _testEof19: - cs = 19 - goto _testEof - _testEof20: - cs = 20 - goto _testEof - _testEof21: - cs = 21 - goto _testEof - _testEof22: - cs = 22 - goto _testEof - _testEof23: - cs = 23 - goto _testEof - _testEof24: - cs = 24 - goto _testEof - _testEof25: - cs = 25 - goto _testEof - _testEof54: - cs = 54 - goto _testEof - _testEof26: - cs = 26 - goto _testEof - _testEof27: - cs = 27 - goto _testEof - _testEof28: - cs = 28 - goto _testEof - _testEof29: - cs = 29 - goto _testEof - _testEof30: - cs = 30 - goto _testEof - _testEof31: - cs = 31 - goto _testEof - _testEof32: - cs = 32 - goto _testEof - _testEof33: - cs = 33 - goto _testEof - _testEof34: - cs = 34 - goto _testEof - _testEof35: - cs = 35 - goto _testEof - _testEof36: - cs = 36 - goto _testEof - _testEof37: - cs = 37 - goto _testEof - _testEof55: - cs = 55 - goto _testEof - _testEof56: - cs = 56 - goto _testEof - _testEof57: - cs = 57 - goto _testEof - _testEof58: - cs = 58 - goto _testEof - _testEof59: - cs = 59 - goto _testEof - _testEof60: - cs = 60 - goto _testEof - _testEof61: - cs = 61 - goto _testEof - _testEof62: - cs = 62 - goto _testEof - _testEof63: - cs = 63 - goto _testEof - _testEof64: - cs = 64 - goto _testEof - _testEof65: - cs = 65 - goto _testEof - _testEof66: - cs = 66 - goto _testEof - _testEof67: - cs = 67 - goto _testEof - _testEof68: - cs = 68 - goto _testEof - _testEof69: - cs = 69 - goto _testEof - _testEof70: - cs = 70 - goto _testEof - _testEof71: - cs = 71 - goto _testEof - _testEof72: - cs = 72 - goto _testEof - _testEof73: - cs = 73 - goto _testEof - _testEof74: - cs = 74 - goto _testEof - _testEof75: - cs = 75 - goto _testEof - _testEof76: - cs = 76 - goto _testEof - _testEof77: - cs = 77 - goto _testEof - _testEof78: - cs = 78 - goto _testEof - _testEof79: - cs = 79 - goto _testEof - _testEof80: - cs = 80 - goto _testEof - _testEof81: - cs = 81 - goto _testEof - _testEof82: - cs = 82 - goto _testEof - _testEof83: - cs = 83 - goto _testEof - _testEof84: - cs = 84 - goto _testEof - _testEof85: - cs = 85 - goto _testEof - _testEof86: - cs = 86 - goto _testEof - _testEof87: - cs = 87 - goto _testEof - _testEof88: - cs = 88 - goto _testEof - _testEof89: - cs = 89 - goto _testEof - _testEof90: - cs = 90 - goto _testEof - _testEof91: - cs = 91 - goto _testEof - _testEof92: - cs = 92 - goto _testEof - _testEof93: - cs = 93 - goto _testEof - _testEof94: - cs = 94 - goto _testEof - _testEof95: - cs = 95 - goto _testEof - _testEof96: - cs = 96 - goto _testEof - _testEof97: - cs = 97 - goto _testEof - _testEof98: - cs = 98 - goto _testEof - _testEof99: - cs = 99 - goto _testEof - _testEof100: - cs = 100 - goto _testEof - _testEof101: - cs = 101 - goto _testEof - _testEof102: - cs = 102 - goto _testEof - _testEof103: - cs = 103 - goto _testEof - _testEof104: - cs = 104 - goto _testEof - _testEof105: - cs = 105 - goto _testEof - _testEof106: - cs = 106 - goto _testEof - _testEof107: - cs = 107 - goto _testEof - _testEof108: - cs = 108 - goto _testEof - _testEof109: - cs = 109 - goto _testEof - _testEof110: - cs = 110 - goto _testEof - _testEof111: - cs = 111 - goto _testEof - _testEof112: - cs = 112 - goto _testEof - _testEof113: - cs = 113 - goto _testEof - _testEof114: - cs = 114 - goto _testEof - _testEof115: - cs = 115 - goto _testEof - _testEof116: - cs = 116 - goto _testEof - _testEof117: - cs = 117 - goto _testEof - _testEof118: - cs = 118 - goto _testEof - _testEof119: - cs = 119 - goto _testEof - _testEof120: - cs = 120 - goto _testEof - _testEof121: - cs = 121 - goto _testEof - _testEof122: - cs = 122 - goto _testEof - _testEof123: - cs = 123 - goto _testEof - _testEof124: - cs = 124 - goto _testEof - _testEof125: - cs = 125 - goto _testEof - _testEof126: - cs = 126 - goto _testEof - _testEof127: - cs = 127 - goto _testEof - _testEof128: - cs = 128 - goto _testEof - _testEof129: - cs = 129 - goto _testEof - _testEof130: - cs = 130 - goto _testEof - _testEof131: - cs = 131 - goto _testEof - _testEof132: - cs = 132 - goto _testEof - _testEof133: - cs = 133 - goto _testEof - _testEof134: - cs = 134 - goto _testEof - _testEof135: - cs = 135 - goto _testEof - _testEof136: - cs = 136 - goto _testEof - _testEof137: - cs = 137 - goto _testEof - _testEof138: - cs = 138 - goto _testEof - _testEof139: - cs = 139 - goto _testEof - _testEof140: - cs = 140 - goto _testEof - _testEof141: - cs = 141 - goto _testEof - _testEof142: - cs = 142 - goto _testEof - _testEof143: - cs = 143 - goto _testEof - _testEof144: - cs = 144 - goto _testEof - _testEof145: - cs = 145 - goto _testEof - _testEof146: - cs = 146 - goto _testEof - _testEof147: - cs = 147 - goto _testEof - _testEof148: - cs = 148 - goto _testEof - _testEof149: - cs = 149 - goto _testEof - _testEof150: - cs = 150 - goto _testEof - _testEof151: - cs = 151 - goto _testEof - _testEof152: - cs = 152 - goto _testEof - _testEof153: - cs = 153 - goto _testEof - _testEof154: - cs = 154 - goto _testEof - _testEof155: - cs = 155 - goto _testEof - _testEof156: - cs = 156 - goto _testEof - _testEof157: - cs = 157 - goto _testEof - _testEof158: - cs = 158 - goto _testEof - _testEof159: - cs = 159 - goto _testEof - _testEof160: - cs = 160 - goto _testEof - _testEof161: - cs = 161 - goto _testEof - _testEof162: - cs = 162 - goto _testEof - _testEof163: - cs = 163 - goto _testEof - _testEof164: - cs = 164 - goto _testEof - _testEof165: - cs = 165 - goto _testEof - _testEof166: - cs = 166 - goto _testEof - _testEof167: - cs = 167 - goto _testEof - _testEof168: - cs = 168 - goto _testEof - _testEof169: - cs = 169 - goto _testEof - _testEof170: - cs = 170 - goto _testEof - _testEof171: - cs = 171 - goto _testEof - _testEof172: - cs = 172 - goto _testEof - _testEof173: - cs = 173 - goto _testEof - _testEof174: - cs = 174 - goto _testEof - _testEof175: - cs = 175 - goto _testEof - _testEof176: - cs = 176 - goto _testEof - _testEof177: - cs = 177 - goto _testEof - _testEof178: - cs = 178 - goto _testEof - _testEof179: - cs = 179 - goto _testEof - _testEof180: - cs = 180 - goto _testEof - _testEof181: - cs = 181 - goto _testEof - _testEof182: - cs = 182 - goto _testEof - _testEof183: - cs = 183 - goto _testEof - _testEof184: - cs = 184 - goto _testEof - _testEof185: - cs = 185 - goto _testEof - _testEof186: - cs = 186 - goto _testEof - _testEof187: - cs = 187 - goto _testEof - _testEof188: - cs = 188 - goto _testEof - _testEof189: - cs = 189 - goto _testEof - _testEof190: - cs = 190 - goto _testEof - _testEof191: - cs = 191 - goto _testEof - _testEof192: - cs = 192 - goto _testEof - _testEof193: - cs = 193 - goto _testEof - _testEof194: - cs = 194 - goto _testEof - _testEof195: - cs = 195 - goto _testEof - _testEof196: - cs = 196 - goto _testEof - _testEof197: - cs = 197 - goto _testEof - _testEof198: - cs = 198 - goto _testEof - _testEof199: - cs = 199 - goto _testEof - _testEof200: - cs = 200 - goto _testEof - _testEof201: - cs = 201 - goto _testEof - _testEof202: - cs = 202 - goto _testEof - _testEof203: - cs = 203 - goto _testEof - _testEof204: - cs = 204 - goto _testEof - _testEof205: - cs = 205 - goto _testEof - _testEof206: - cs = 206 - goto _testEof - _testEof207: - cs = 207 - goto _testEof - _testEof208: - cs = 208 - goto _testEof - _testEof209: - cs = 209 - goto _testEof - _testEof210: - cs = 210 - goto _testEof - _testEof211: - cs = 211 - goto _testEof - _testEof212: - cs = 212 - goto _testEof - _testEof213: - cs = 213 - goto _testEof - _testEof214: - cs = 214 - goto _testEof - _testEof215: - cs = 215 - goto _testEof - _testEof216: - cs = 216 - goto _testEof - _testEof217: - cs = 217 - goto _testEof - _testEof218: - cs = 218 - goto _testEof - _testEof219: - cs = 219 - goto _testEof - _testEof220: - cs = 220 - goto _testEof - _testEof221: - cs = 221 - goto _testEof - _testEof222: - cs = 222 - goto _testEof - _testEof223: - cs = 223 - goto _testEof - _testEof224: - cs = 224 - goto _testEof - _testEof225: - cs = 225 - goto _testEof - _testEof226: - cs = 226 - goto _testEof - _testEof227: - cs = 227 - goto _testEof - _testEof228: - cs = 228 - goto _testEof - _testEof229: - cs = 229 - goto _testEof - _testEof230: - cs = 230 - goto _testEof - _testEof231: - cs = 231 - goto _testEof - _testEof232: - cs = 232 - goto _testEof - _testEof233: - cs = 233 - goto _testEof - _testEof234: - cs = 234 - goto _testEof - _testEof235: - cs = 235 - goto _testEof - _testEof236: - cs = 236 - goto _testEof - _testEof237: - cs = 237 - goto _testEof - _testEof238: - cs = 238 - goto _testEof - _testEof239: - cs = 239 - goto _testEof - _testEof240: - cs = 240 - goto _testEof - _testEof241: - cs = 241 - goto _testEof - _testEof242: - cs = 242 - goto _testEof - _testEof243: - cs = 243 - goto _testEof - _testEof244: - cs = 244 - goto _testEof - _testEof245: - cs = 245 - goto _testEof - _testEof246: - cs = 246 - goto _testEof - _testEof247: - cs = 247 - goto _testEof - _testEof248: - cs = 248 - goto _testEof - _testEof249: - cs = 249 - goto _testEof - _testEof250: - cs = 250 - goto _testEof - _testEof251: - cs = 251 - goto _testEof - _testEof252: - cs = 252 - goto _testEof - _testEof253: - cs = 253 - goto _testEof - _testEof254: - cs = 254 - goto _testEof - _testEof255: - cs = 255 - goto _testEof - _testEof256: - cs = 256 - goto _testEof - _testEof257: - cs = 257 - goto _testEof - _testEof258: - cs = 258 - goto _testEof - _testEof259: - cs = 259 - goto _testEof - _testEof260: - cs = 260 - goto _testEof - _testEof261: - cs = 261 - goto _testEof - _testEof262: - cs = 262 - goto _testEof - _testEof263: - cs = 263 - goto _testEof - _testEof264: - cs = 264 - goto _testEof - _testEof265: - cs = 265 - goto _testEof - _testEof266: - cs = 266 - goto _testEof - _testEof267: - cs = 267 - goto _testEof - _testEof268: - cs = 268 - goto _testEof - _testEof269: - cs = 269 - goto _testEof - _testEof270: - cs = 270 - goto _testEof - _testEof271: - cs = 271 - goto _testEof - _testEof272: - cs = 272 - goto _testEof - _testEof273: - cs = 273 - goto _testEof - _testEof274: - cs = 274 - goto _testEof - _testEof275: - cs = 275 - goto _testEof - _testEof276: - cs = 276 - goto _testEof - _testEof277: - cs = 277 - goto _testEof - _testEof278: - cs = 278 - goto _testEof - _testEof279: - cs = 279 - goto _testEof - _testEof280: - cs = 280 - goto _testEof - _testEof281: - cs = 281 - goto _testEof - _testEof282: - cs = 282 - goto _testEof - _testEof283: - cs = 283 - goto _testEof - _testEof284: - cs = 284 - goto _testEof - _testEof285: - cs = 285 - goto _testEof - _testEof286: - cs = 286 - goto _testEof - _testEof287: - cs = 287 - goto _testEof - _testEof288: - cs = 288 - goto _testEof - _testEof289: - cs = 289 - goto _testEof - _testEof290: - cs = 290 - goto _testEof - _testEof291: - cs = 291 - goto _testEof - _testEof292: - cs = 292 - goto _testEof - _testEof293: - cs = 293 - goto _testEof - _testEof294: - cs = 294 - goto _testEof - _testEof295: - cs = 295 - goto _testEof - _testEof296: - cs = 296 - goto _testEof - _testEof297: - cs = 297 - goto _testEof - _testEof298: - cs = 298 - goto _testEof - _testEof299: - cs = 299 - goto _testEof - _testEof300: - cs = 300 - goto _testEof - _testEof301: - cs = 301 - goto _testEof - _testEof302: - cs = 302 - goto _testEof - _testEof303: - cs = 303 - goto _testEof - _testEof304: - cs = 304 - goto _testEof - _testEof305: - cs = 305 - goto _testEof - _testEof306: - cs = 306 - goto _testEof - _testEof307: - cs = 307 - goto _testEof - _testEof308: - cs = 308 - goto _testEof - _testEof309: - cs = 309 - goto _testEof - _testEof310: - cs = 310 - goto _testEof - _testEof311: - cs = 311 - goto _testEof - _testEof312: - cs = 312 - goto _testEof - _testEof313: - cs = 313 - goto _testEof - _testEof314: - cs = 314 - goto _testEof - _testEof315: - cs = 315 - goto _testEof - _testEof316: - cs = 316 - goto _testEof - _testEof317: - cs = 317 - goto _testEof - _testEof318: - cs = 318 - goto _testEof - _testEof319: - cs = 319 - goto _testEof - _testEof320: - cs = 320 - goto _testEof - _testEof321: - cs = 321 - goto _testEof - _testEof322: - cs = 322 - goto _testEof - _testEof323: - cs = 323 - goto _testEof - _testEof324: - cs = 324 - goto _testEof - _testEof325: - cs = 325 - goto _testEof - _testEof326: - cs = 326 - goto _testEof - _testEof327: - cs = 327 - goto _testEof - _testEof328: - cs = 328 - goto _testEof - _testEof329: - cs = 329 - goto _testEof - _testEof330: - cs = 330 - goto _testEof - _testEof331: - cs = 331 - goto _testEof - _testEof332: - cs = 332 - goto _testEof - _testEof333: - cs = 333 - goto _testEof - _testEof334: - cs = 334 - goto _testEof - _testEof335: - cs = 335 - goto _testEof - _testEof336: - cs = 336 - goto _testEof - _testEof337: - cs = 337 - goto _testEof - _testEof338: - cs = 338 - goto _testEof - _testEof339: - cs = 339 - goto _testEof - _testEof340: - cs = 340 - goto _testEof - _testEof341: - cs = 341 - goto _testEof - _testEof342: - cs = 342 - goto _testEof - _testEof343: - cs = 343 - goto _testEof - _testEof344: - cs = 344 - goto _testEof - _testEof345: - cs = 345 - goto _testEof - _testEof346: - cs = 346 - goto _testEof - _testEof347: - cs = 347 - goto _testEof - _testEof348: - cs = 348 - goto _testEof - _testEof349: - cs = 349 - goto _testEof - _testEof350: - cs = 350 - goto _testEof - _testEof351: - cs = 351 - goto _testEof - _testEof352: - cs = 352 - goto _testEof - _testEof353: - cs = 353 - goto _testEof - _testEof354: - cs = 354 - goto _testEof - _testEof355: - cs = 355 - goto _testEof - _testEof356: - cs = 356 - goto _testEof - _testEof357: - cs = 357 - goto _testEof - _testEof358: - cs = 358 - goto _testEof - _testEof359: - cs = 359 - goto _testEof - _testEof360: - cs = 360 - goto _testEof - _testEof361: - cs = 361 - goto _testEof - _testEof362: - cs = 362 - goto _testEof - _testEof363: - cs = 363 - goto _testEof - _testEof364: - cs = 364 - goto _testEof - _testEof365: - cs = 365 - goto _testEof - _testEof366: - cs = 366 - goto _testEof - _testEof367: - cs = 367 - goto _testEof - _testEof368: - cs = 368 - goto _testEof - _testEof369: - cs = 369 - goto _testEof - _testEof370: - cs = 370 - goto _testEof - _testEof371: - cs = 371 - goto _testEof - _testEof372: - cs = 372 - goto _testEof - _testEof373: - cs = 373 - goto _testEof - _testEof374: - cs = 374 - goto _testEof - _testEof375: - cs = 375 - goto _testEof - _testEof376: - cs = 376 - goto _testEof - _testEof377: - cs = 377 - goto _testEof - _testEof378: - cs = 378 - goto _testEof - _testEof379: - cs = 379 - goto _testEof - _testEof380: - cs = 380 - goto _testEof - _testEof381: - cs = 381 - goto _testEof - _testEof382: - cs = 382 - goto _testEof - _testEof383: - cs = 383 - goto _testEof - _testEof384: - cs = 384 - goto _testEof - _testEof385: - cs = 385 - goto _testEof - _testEof386: - cs = 386 - goto _testEof - _testEof387: - cs = 387 - goto _testEof - _testEof388: - cs = 388 - goto _testEof - _testEof389: - cs = 389 - goto _testEof - _testEof390: - cs = 390 - goto _testEof - _testEof391: - cs = 391 - goto _testEof - _testEof392: - cs = 392 - goto _testEof - _testEof393: - cs = 393 - goto _testEof - _testEof394: - cs = 394 - goto _testEof - _testEof395: - cs = 395 - goto _testEof - _testEof396: - cs = 396 - goto _testEof - _testEof397: - cs = 397 - goto _testEof - _testEof398: - cs = 398 - goto _testEof - _testEof399: - cs = 399 - goto _testEof - _testEof400: - cs = 400 - goto _testEof - _testEof401: - cs = 401 - goto _testEof - _testEof402: - cs = 402 - goto _testEof - _testEof403: - cs = 403 - goto _testEof - _testEof404: - cs = 404 - goto _testEof - _testEof405: - cs = 405 - goto _testEof - _testEof406: - cs = 406 - goto _testEof - _testEof407: - cs = 407 - goto _testEof - _testEof408: - cs = 408 - goto _testEof - _testEof409: - cs = 409 - goto _testEof - _testEof410: - cs = 410 - goto _testEof - _testEof411: - cs = 411 - goto _testEof - _testEof412: - cs = 412 - goto _testEof - _testEof413: - cs = 413 - goto _testEof - _testEof414: - cs = 414 - goto _testEof - _testEof415: - cs = 415 - goto _testEof - _testEof416: - cs = 416 - goto _testEof - _testEof417: - cs = 417 - goto _testEof - _testEof418: - cs = 418 - goto _testEof - _testEof419: - cs = 419 - goto _testEof - _testEof420: - cs = 420 - goto _testEof - _testEof421: - cs = 421 - goto _testEof - _testEof422: - cs = 422 - goto _testEof - _testEof423: - cs = 423 - goto _testEof - _testEof424: - cs = 424 - goto _testEof - _testEof425: - cs = 425 - goto _testEof - _testEof426: - cs = 426 - goto _testEof - _testEof427: - cs = 427 - goto _testEof - _testEof428: - cs = 428 - goto _testEof - _testEof429: - cs = 429 - goto _testEof - _testEof430: - cs = 430 - goto _testEof - _testEof431: - cs = 431 - goto _testEof - _testEof432: - cs = 432 - goto _testEof - _testEof433: - cs = 433 - goto _testEof - _testEof434: - cs = 434 - goto _testEof - _testEof435: - cs = 435 - goto _testEof - _testEof436: - cs = 436 - goto _testEof - _testEof437: - cs = 437 - goto _testEof - _testEof438: - cs = 438 - goto _testEof - _testEof439: - cs = 439 - goto _testEof - _testEof440: - cs = 440 - goto _testEof - _testEof441: - cs = 441 - goto _testEof - _testEof442: - cs = 442 - goto _testEof - _testEof443: - cs = 443 - goto _testEof - _testEof444: - cs = 444 - goto _testEof - _testEof445: - cs = 445 - goto _testEof - _testEof446: - cs = 446 - goto _testEof - _testEof447: - cs = 447 - goto _testEof - _testEof448: - cs = 448 - goto _testEof - _testEof449: - cs = 449 - goto _testEof - _testEof450: - cs = 450 - goto _testEof - _testEof451: - cs = 451 - goto _testEof - _testEof452: - cs = 452 - goto _testEof - _testEof453: - cs = 453 - goto _testEof - _testEof454: - cs = 454 - goto _testEof - _testEof455: - cs = 455 - goto _testEof - _testEof456: - cs = 456 - goto _testEof - _testEof457: - cs = 457 - goto _testEof - _testEof458: - cs = 458 - goto _testEof - _testEof459: - cs = 459 - goto _testEof - _testEof460: - cs = 460 - goto _testEof - _testEof461: - cs = 461 - goto _testEof - _testEof462: - cs = 462 - goto _testEof - _testEof463: - cs = 463 - goto _testEof - _testEof464: - cs = 464 - goto _testEof - _testEof465: - cs = 465 - goto _testEof - _testEof466: - cs = 466 - goto _testEof - _testEof467: - cs = 467 - goto _testEof - _testEof468: - cs = 468 - goto _testEof - _testEof469: - cs = 469 - goto _testEof - _testEof470: - cs = 470 - goto _testEof - _testEof471: - cs = 471 - goto _testEof - _testEof472: - cs = 472 - goto _testEof - _testEof473: - cs = 473 - goto _testEof - _testEof474: - cs = 474 - goto _testEof - _testEof475: - cs = 475 - goto _testEof - _testEof476: - cs = 476 - goto _testEof - _testEof477: - cs = 477 - goto _testEof - _testEof478: - cs = 478 - goto _testEof - _testEof479: - cs = 479 - goto _testEof - _testEof480: - cs = 480 - goto _testEof - _testEof481: - cs = 481 - goto _testEof - _testEof482: - cs = 482 - goto _testEof - _testEof483: - cs = 483 - goto _testEof - _testEof484: - cs = 484 - goto _testEof - _testEof485: - cs = 485 - goto _testEof - _testEof486: - cs = 486 - goto _testEof - _testEof487: - cs = 487 - goto _testEof - _testEof488: - cs = 488 - goto _testEof - _testEof489: - cs = 489 - goto _testEof - _testEof490: - cs = 490 - goto _testEof - _testEof491: - cs = 491 - goto _testEof - _testEof492: - cs = 492 - goto _testEof - _testEof493: - cs = 493 - goto _testEof - _testEof494: - cs = 494 - goto _testEof - _testEof495: - cs = 495 - goto _testEof - _testEof496: - cs = 496 - goto _testEof - _testEof497: - cs = 497 - goto _testEof - _testEof498: - cs = 498 - goto _testEof - _testEof499: - cs = 499 - goto _testEof - _testEof500: - cs = 500 - goto _testEof - _testEof501: - cs = 501 - goto _testEof - _testEof502: - cs = 502 - goto _testEof - _testEof503: - cs = 503 - goto _testEof - _testEof504: - cs = 504 - goto _testEof - _testEof505: - cs = 505 - goto _testEof - _testEof506: - cs = 506 - goto _testEof - _testEof507: - cs = 507 - goto _testEof - _testEof508: - cs = 508 - goto _testEof - _testEof509: - cs = 509 - goto _testEof - _testEof510: - cs = 510 - goto _testEof - _testEof511: - cs = 511 - goto _testEof - _testEof512: - cs = 512 - goto _testEof - _testEof513: - cs = 513 - goto _testEof - _testEof514: - cs = 514 - goto _testEof - _testEof515: - cs = 515 - goto _testEof - _testEof516: - cs = 516 - goto _testEof - _testEof517: - cs = 517 - goto _testEof - _testEof518: - cs = 518 - goto _testEof - _testEof519: - cs = 519 - goto _testEof - _testEof520: - cs = 520 - goto _testEof - _testEof521: - cs = 521 - goto _testEof - _testEof522: - cs = 522 - goto _testEof - _testEof523: - cs = 523 - goto _testEof - _testEof524: - cs = 524 - goto _testEof - _testEof525: - cs = 525 - goto _testEof - _testEof526: - cs = 526 - goto _testEof - _testEof527: - cs = 527 - goto _testEof - _testEof528: - cs = 528 - goto _testEof - _testEof529: - cs = 529 - goto _testEof - _testEof530: - cs = 530 - goto _testEof - _testEof531: - cs = 531 - goto _testEof - _testEof532: - cs = 532 - goto _testEof - _testEof533: - cs = 533 - goto _testEof - _testEof534: - cs = 534 - goto _testEof - _testEof535: - cs = 535 - goto _testEof - _testEof536: - cs = 536 - goto _testEof - _testEof537: - cs = 537 - goto _testEof - _testEof538: - cs = 538 - goto _testEof - _testEof539: - cs = 539 - goto _testEof - _testEof540: - cs = 540 - goto _testEof - _testEof541: - cs = 541 - goto _testEof - _testEof542: - cs = 542 - goto _testEof - _testEof543: - cs = 543 - goto _testEof - _testEof544: - cs = 544 - goto _testEof - _testEof545: - cs = 545 - goto _testEof - _testEof546: - cs = 546 - goto _testEof - _testEof547: - cs = 547 - goto _testEof - _testEof548: - cs = 548 - goto _testEof - _testEof549: - cs = 549 - goto _testEof - _testEof550: - cs = 550 - goto _testEof - _testEof551: - cs = 551 - goto _testEof - _testEof552: - cs = 552 - goto _testEof - _testEof553: - cs = 553 - goto _testEof - _testEof554: - cs = 554 - goto _testEof - _testEof555: - cs = 555 - goto _testEof - _testEof556: - cs = 556 - goto _testEof - _testEof557: - cs = 557 - goto _testEof - _testEof558: - cs = 558 - goto _testEof - _testEof559: - cs = 559 - goto _testEof - _testEof560: - cs = 560 - goto _testEof - _testEof561: - cs = 561 - goto _testEof - _testEof562: - cs = 562 - goto _testEof - _testEof563: - cs = 563 - goto _testEof - _testEof564: - cs = 564 - goto _testEof - _testEof565: - cs = 565 - goto _testEof - _testEof566: - cs = 566 - goto _testEof - _testEof567: - cs = 567 - goto _testEof - _testEof568: - cs = 568 - goto _testEof - _testEof569: - cs = 569 - goto _testEof - _testEof570: - cs = 570 - goto _testEof - _testEof571: - cs = 571 - goto _testEof - _testEof572: - cs = 572 - goto _testEof - _testEof573: - cs = 573 - goto _testEof - _testEof574: - cs = 574 - goto _testEof - _testEof575: - cs = 575 - goto _testEof - _testEof576: - cs = 576 - goto _testEof - _testEof577: - cs = 577 - goto _testEof - _testEof578: - cs = 578 - goto _testEof - _testEof579: - cs = 579 - goto _testEof - _testEof580: - cs = 580 - goto _testEof - _testEof581: - cs = 581 - goto _testEof - _testEof583: - cs = 583 - goto _testEof - _testEof44: - cs = 44 - goto _testEof - _testEof45: - cs = 45 - goto _testEof - _testEof46: - cs = 46 - goto _testEof - _testEof47: - cs = 47 - goto _testEof - _testEof48: - cs = 48 - goto _testEof - _testEof49: - cs = 49 - goto _testEof - _testEof50: - cs = 50 - goto _testEof - _testEof51: - cs = 51 - goto _testEof + st_out: + _test_eof53: cs = 53; goto _test_eof + _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_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_eof54: cs = 54; 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_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_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_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_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_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_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_eof247: cs = 247; goto _test_eof + _test_eof248: cs = 248; goto _test_eof + _test_eof249: cs = 249; goto _test_eof + _test_eof250: cs = 250; goto _test_eof + _test_eof251: cs = 251; 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_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_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_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_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_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_eof583: cs = 583; goto _test_eof + _test_eof44: cs = 44; 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 - _testEof: - { - } - if p == eof { - switch cs { - case 54: + _test_eof: {} + if p == eof { + switch cs { + case 54: +//line rfc5424/builder.go.rl:22 - if t, e := time.Parse(RFC3339MICRO, string(data[pb:p])); e == nil { - sm.Timestamp = &t - } + if t, e := time.Parse(RFC3339MICRO, string(data[pb:p])); e == nil { + sm.Timestamp = &t + } - case 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309: + case 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309: +//line rfc5424/builder.go.rl:28 - if s := string(data[pb:p]); s != "-" { - sm.Hostname = &s - } + if s := string(data[pb:p]); s != "-" { + sm.Hostname = &s + } - case 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: + case 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: +//line rfc5424/builder.go.rl:34 - if s := string(data[pb:p]); s != "-" { - sm.Appname = &s - } + if s := string(data[pb:p]); s != "-" { + sm.Appname = &s + } - case 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 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, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485: + case 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 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, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485: +//line rfc5424/builder.go.rl:40 - if s := string(data[pb:p]); s != "-" { - sm.ProcID = &s - } + if s := string(data[pb:p]); s != "-" { + sm.ProcID = &s + } - case 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517: + case 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517: +//line rfc5424/builder.go.rl:46 - if s := string(data[pb:p]); s != "-" { - sm.MsgID = &s - } + if s := string(data[pb:p]); s != "-" { + sm.MsgID = &s + } - case 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549: + case 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549: +//line rfc5424/builder.go.rl:52 - if sm.StructuredData == nil { - sm.StructuredData = &(map[string]map[string]string{}) - } + if sm.StructuredData == nil { + sm.StructuredData = &(map[string]map[string]string{}) + } - id := string(data[pb:p]) - elements := *sm.StructuredData - if _, ok := elements[id]; !ok { - elements[id] = map[string]string{} - } + id := string(data[pb:p]) + elements := *sm.StructuredData + if _, ok := elements[id]; !ok { + elements[id] = map[string]string{} + } - case 550, 551, 552, 553, 554, 555, 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: + case 550, 551, 552, 553, 554, 555, 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: +//line rfc5424/builder.go.rl:64 - // Assuming SD map already exists, contains currentid key (set from outside) - elements := *sm.StructuredData - elements[currentid][string(data[pb:p])] = "" + // Assuming SD map already exists, contains currentid key (set from outside) + elements := *sm.StructuredData + elements[currentid][string(data[pb:p])] = "" - case 583: + case 583: +//line rfc5424/builder.go.rl:74 - // Store text - text := data[pb:p] - // Strip backslashes only when there are ... - if len(backslashes) > 0 { - text = common.RemoveBytes(text, backslashes, pb) - } - // Assuming SD map already exists, contains currentid key and currentparamname key (set from outside) - elements := *sm.StructuredData - elements[currentid][currentparamname] = string(text) + // Store text + text := data[pb:p] + // Strip backslashes only when there are ... + if len(backslashes) > 0 { + text = common.RemoveBytes(text, backslashes, pb) + } + // Assuming SD map already exists, contains currentid key and currentparamname key (set from outside) + elements := *sm.StructuredData + elements[currentid][currentparamname] = string(text) - case 53: + case 53: +//line rfc5424/builder.go.rl:86 - if s := string(data[pb:p]); s != "" { - sm.Message = &s - } + if s := string(data[pb:p]); s != "" { + sm.Message = &s + } - case 582: + case 582: +//line rfc5424/builder.go.rl:18 - pb = p + pb = p - // Store text - text := data[pb:p] - // Strip backslashes only when there are ... - if len(backslashes) > 0 { - text = common.RemoveBytes(text, backslashes, pb) - } - // Assuming SD map already exists, contains currentid key and currentparamname key (set from outside) - elements := *sm.StructuredData - elements[currentid][currentparamname] = string(text) +//line rfc5424/builder.go.rl:74 - case 52: + // Store text + text := data[pb:p] + // Strip backslashes only when there are ... + if len(backslashes) > 0 { + text = common.RemoveBytes(text, backslashes, pb) + } + // Assuming SD map already exists, contains currentid key and currentparamname key (set from outside) + elements := *sm.StructuredData + elements[currentid][currentparamname] = string(text) - pb = p + case 52: +//line rfc5424/builder.go.rl:18 - if s := string(data[pb:p]); s != "" { - sm.Message = &s - } + pb = p - } - } +//line rfc5424/builder.go.rl:86 + + if s := string(data[pb:p]); s != "" { + sm.Message = &s + } - _out: - { +//line rfc5424/builder.go:8172 } } - return sm + _out: {} + } + +//line rfc5424/builder.go.rl:170 + + return sm } // SetPriority set the priority value and the computed facility and severity codes accordingly. // // It ignores incorrect priority values (range [0, 191]). func (sm *SyslogMessage) SetPriority(value uint8) Builder { - if common.ValidPriority(value) { - sm.ComputeFromPriority(value) - } + if common.ValidPriority(value) { + sm.ComputeFromPriority(value) + } - return sm + return sm } // SetVersion set the version value. @@ -9288,34 +8204,34 @@ func (sm *SyslogMessage) SetVersion(value uint16) Builder { // SetTimestamp set the timestamp value. func (sm *SyslogMessage) SetTimestamp(value string) Builder { - return sm.set(timestamp, value) + return sm.set(timestamp, value) } // SetHostname set the hostname value. func (sm *SyslogMessage) SetHostname(value string) Builder { - return sm.set(hostname, value) + return sm.set(hostname, value) } // SetAppname set the appname value. func (sm *SyslogMessage) SetAppname(value string) Builder { - return sm.set(appname, value) + return sm.set(appname, value) } // SetProcID set the procid value. func (sm *SyslogMessage) SetProcID(value string) Builder { - return sm.set(procid, value) + return sm.set(procid, value) } // SetMsgID set the msgid value. func (sm *SyslogMessage) SetMsgID(value string) Builder { - return sm.set(msgid, value) + return sm.set(msgid, value) } // SetElementID set a structured data id. // // When the provided id already exists the operation is discarded. func (sm *SyslogMessage) SetElementID(value string) Builder { - return sm.set(sdid, value) + return sm.set(sdid, value) } // SetParameter set a structured data parameter belonging to the given element. @@ -9323,89 +8239,87 @@ func (sm *SyslogMessage) SetElementID(value string) Builder { // If the element does not exist it creates one with the given element id. // When a parameter with the given name already exists for the given element the operation is discarded. func (sm *SyslogMessage) SetParameter(id string, name string, value string) Builder { - // Create an element with the given id (or re-use the existing one) - sm.set(sdid, id) + // Create an element with the given id (or re-use the existing one) + sm.set(sdid, id) - // We can create parameter iff the given element id exists - if sm.StructuredData != nil { - elements := *sm.StructuredData - if _, ok := elements[id]; ok { - currentid = id - sm.set(sdpn, name) - // We can assign parameter value iff the given parameter key exists - if _, ok := elements[id][name]; ok { - currentparamname = name - sm.set(sdpv, value) - } - } - } + // We can create parameter iff the given element id exists + if sm.StructuredData != nil { + elements := *sm.StructuredData + if _, ok := elements[id]; ok { + sm.setWithOptions(sdpn, name, id, emptyString) + // We can assign parameter value iff the given parameter key exists + if _, ok := elements[id][name]; ok { + sm.setWithOptions(sdpv, value, id, name) + } + } + } - return sm + return sm } // SetMessage set the message value. func (sm *SyslogMessage) SetMessage(value string) Builder { - return sm.set(msg, value) + return sm.set(msg, value) } func (sm *SyslogMessage) String() (string, error) { - if !sm.Valid() { - return "", fmt.Errorf("invalid syslog") - } + if !sm.Valid() { + return "", fmt.Errorf("invalid syslog") + } - template := "<%d>%d %s %s %s %s %s %s%s" + template := "<%d>%d %s %s %s %s %s %s%s" - t := "-" - hn := "-" - an := "-" - pid := "-" - mid := "-" - sd := "-" - m := "" - if sm.Timestamp != nil { - t = sm.Timestamp.Format("2006-01-02T15:04:05.999999Z07:00") // verify 07:00 - } - if sm.Hostname != nil { - hn = *sm.Hostname - } - if sm.Appname != nil { - an = *sm.Appname - } - if sm.ProcID != nil { - pid = *sm.ProcID - } - if sm.MsgID != nil { - mid = *sm.MsgID - } - if sm.StructuredData != nil { - // Sort element identifiers - identifiers := make([]string, 0) - for k := range *sm.StructuredData { - identifiers = append(identifiers, k) - } - sort.Strings(identifiers) + t := "-" + hn := "-" + an := "-" + pid := "-" + mid := "-" + sd := "-" + m := "" + if sm.Timestamp != nil { + t = sm.Timestamp.Format("2006-01-02T15:04:05.999999Z07:00") // verify 07:00 + } + if sm.Hostname != nil { + hn = *sm.Hostname + } + if sm.Appname != nil { + an = *sm.Appname + } + if sm.ProcID != nil { + pid = *sm.ProcID + } + if sm.MsgID != nil { + mid = *sm.MsgID + } + if sm.StructuredData != nil { + // Sort element identifiers + identifiers := make([]string, 0) + for k, _ := range *sm.StructuredData { + identifiers = append(identifiers, k) + } + sort.Strings(identifiers) - sd = "" - for _, id := range identifiers { - sd += fmt.Sprintf("[%s", id) + sd = "" + for _, id := range identifiers { + sd += fmt.Sprintf("[%s", id) - // Sort parameter names - params := (*sm.StructuredData)[id] - names := make([]string, 0) - for n := range params { - names = append(names, n) - } - sort.Strings(names) + // Sort parameter names + params := (*sm.StructuredData)[id] + names := make([]string, 0) + for n, _ := range params { + names = append(names, n) + } + sort.Strings(names) - for _, name := range names { - sd += fmt.Sprintf(" %s=\"%s\"", name, common.EscapeBytes(params[name])) - } - sd += "]" - } - } - if sm.Message != nil { - m = " " + *sm.Message - } + for _, name := range names { + sd += fmt.Sprintf(" %s=\"%s\"", name, common.EscapeBytes(params[name])) + } + sd += "]" + } + } + if sm.Message != nil { + m = " " + *sm.Message + } - return fmt.Sprintf(template, *sm.Priority, sm.Version, t, hn, an, pid, mid, sd, m), nil + return fmt.Sprintf(template, *sm.Priority, sm.Version, t, hn, an, pid, mid, sd, m), nil }