swwheihei
2020-07-24 956fd47ed60bda6e27ad8bb9f53ba5215973300a
修复返回值低级错误
1个文件已修改
60 ■■■■ 已修改文件
src/main/java/com/genersoft/iot/vmp/media/zlm/ZLMHttpHookListener.java 60 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/genersoft/iot/vmp/media/zlm/ZLMHttpHookListener.java
@@ -45,8 +45,8 @@
        
        
        JSONObject ret = new JSONObject();
        json.put("code", 0);
        json.put("msg", "success");
        ret.put("code", 0);
        ret.put("msg", "success");
        return new ResponseEntity<String>(ret.toString(),HttpStatus.OK);
    }
    
@@ -64,10 +64,10 @@
        // TODO Auto-generated method stub
        
        JSONObject ret = new JSONObject();
        json.put("code", 0);
        json.put("err", "");
        json.put("path", "");
        json.put("second", 600);
        ret.put("code", 0);
        ret.put("err", "");
        ret.put("path", "");
        ret.put("second", 600);
        return new ResponseEntity<String>(ret.toString(),HttpStatus.OK);
    }
    
@@ -85,8 +85,8 @@
        // TODO Auto-generated method stub
        
        JSONObject ret = new JSONObject();
        json.put("code", 0);
        json.put("msg", "success");
        ret.put("code", 0);
        ret.put("msg", "success");
        return new ResponseEntity<String>(ret.toString(),HttpStatus.OK);
    }
    
@@ -104,11 +104,11 @@
        // TODO Auto-generated method stub
        
        JSONObject ret = new JSONObject();
        json.put("code", 0);
        json.put("msg", "success");
        json.put("enableHls", true);
        json.put("enableMP4", false);
        json.put("enableRtxp", true);
        ret.put("code", 0);
        ret.put("msg", "success");
        ret.put("enableHls", true);
        ret.put("enableMP4", false);
        ret.put("enableRtxp", true);
        return new ResponseEntity<String>(ret.toString(),HttpStatus.OK);
    }
    
@@ -126,8 +126,8 @@
        // TODO Auto-generated method stub
        
        JSONObject ret = new JSONObject();
        json.put("code", 0);
        json.put("msg", "success");
        ret.put("code", 0);
        ret.put("msg", "success");
        return new ResponseEntity<String>(ret.toString(),HttpStatus.OK);
    }
    
@@ -145,8 +145,8 @@
        // TODO Auto-generated method stub
        
        JSONObject ret = new JSONObject();
        json.put("code", 0);
        json.put("realm", "");
        ret.put("code", 0);
        ret.put("realm", "");
        return new ResponseEntity<String>(ret.toString(),HttpStatus.OK);
    }
    
@@ -165,9 +165,9 @@
        // TODO Auto-generated method stub
        
        JSONObject ret = new JSONObject();
        json.put("code", 0);
        json.put("encrypted", false);
        json.put("passwd", "test");
        ret.put("code", 0);
        ret.put("encrypted", false);
        ret.put("passwd", "test");
        return new ResponseEntity<String>(ret.toString(),HttpStatus.OK);
    }
    
@@ -185,8 +185,8 @@
        // TODO Auto-generated method stub
        
        JSONObject ret = new JSONObject();
        json.put("code", 0);
        json.put("msg", "success");
        ret.put("code", 0);
        ret.put("msg", "success");
        return new ResponseEntity<String>(ret.toString(),HttpStatus.OK);
    }
    
@@ -204,8 +204,8 @@
        // TODO Auto-generated method stub
        
        JSONObject ret = new JSONObject();
        json.put("code", 0);
        json.put("msg", "success");
        ret.put("code", 0);
        ret.put("msg", "success");
        return new ResponseEntity<String>(ret.toString(),HttpStatus.OK);
    }
    
@@ -228,8 +228,8 @@
        cmder.streamByeCmd(ssrc);
        
        JSONObject ret = new JSONObject();
        json.put("code", 0);
        json.put("close", true);
        ret.put("code", 0);
        ret.put("close", true);
        return new ResponseEntity<String>(ret.toString(),HttpStatus.OK);
    }
    
@@ -247,8 +247,8 @@
        // TODO Auto-generated method stub
        
        JSONObject ret = new JSONObject();
        json.put("code", 0);
        json.put("msg", "success");
        ret.put("code", 0);
        ret.put("msg", "success");
        return new ResponseEntity<String>(ret.toString(),HttpStatus.OK);
    }
    
@@ -266,8 +266,8 @@
        // TODO Auto-generated method stub
        
        JSONObject ret = new JSONObject();
        json.put("code", 0);
        json.put("msg", "success");
        ret.put("code", 0);
        ret.put("msg", "success");
        return new ResponseEntity<String>(ret.toString(),HttpStatus.OK);
    }
}