resourcepool / ssdp-client

The most lightweight asynchronous Java SSDP (Simple Service Discovery Protocol) Client
Apache License 2.0
52 stars 21 forks source link

: in header #7

Closed nadraliev closed 6 years ago

nadraliev commented 6 years ago

If header value contains symbol ":", like"INFO: name='Simulator: 1'", then parsed headers map contains entry with key "INFO: NAME='SIMULATOR'" and value "1" but should be key "INFO" and value "name='Simulator: 1'"

nadraliev commented 6 years ago

Seems like private static final Pattern HEADER_PATTERN = Pattern.compile("(.*): (.*)"); is wrong in ResponseParser