Browse Source

I lose control. There's a fire within my soul.

pull/2/head
Justine Alexandra Roberts Tunney 11 years ago
parent
commit
d126ad699e
3 changed files with 3130 additions and 3129 deletions
  1. +2236
    -2235
      sip/msg_parse.go
  2. +1
    -3
      sip/msg_parse.rl
  3. +893
    -891
      sip/uri_parse.go

+ 2236
- 2235
sip/msg_parse.go
File diff suppressed because it is too large
View File


+ 1
- 3
sip/msg_parse.rl View File

@ -338,9 +338,7 @@ func ParseMsgBytes(data []byte) (msg *Msg, err error) {
msg.WWWAuthenticate = string(data[mark:p])
}
action lookAheadWSP {
p + 2 < pe && (data[p+2] == ' ' || data[p+2] == '\t')
}
action lookAheadWSP { p + 2 < pe && (data[p+2] == ' ' || data[p+2] == '\t') }
# https://tools.ietf.org/html/rfc2234
SP = " ";


+ 893
- 891
sip/uri_parse.go
File diff suppressed because it is too large
View File


Loading…
Cancel
Save