Optimization in SSDP
This commit is contained in:
parent
0956e4aee3
commit
5fa807e50b
4 changed files with 13 additions and 6 deletions
|
|
@ -262,7 +262,10 @@ public class HttpHeaderParser {
|
|||
StringBuilder tmp = new StringBuilder();
|
||||
tmp.append("{Type: ").append(type);
|
||||
tmp.append(", HTTP_version: HTTP/").append(version);
|
||||
tmp.append(", URL: \"").append(url).append('\"');
|
||||
if(url == null)
|
||||
tmp.append(", URL: null");
|
||||
else
|
||||
tmp.append(", URL: \"").append(url).append('\"');
|
||||
|
||||
tmp.append(", URL_attr: { ");
|
||||
for( String key : url_attr.keySet() ){
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue