[patch] update version #188 #189

pull/197/head
q191201771 3 years ago
parent f3afb0479c
commit c9c735bdb2

@ -1,6 +1,6 @@
{
"# doc of config": "https://pengrl.com/lal/#/ConfigBrief",
"conf_version": "v0.3.2",
"conf_version": "v0.3.3",
"rtmp": {
"enable": true,
"addr": ":1935",
@ -112,4 +112,4 @@
"log_group_max_group_num": 10,
"log_group_max_sub_num_per_group": 10
}
}
}

@ -1,3 +1,11 @@
// Copyright 2022, Chef. All rights reserved.
// https://github.com/q191201771/lal
//
// Use of this source code is governed by a MIT-style license
// that can be found in the License file.
//
// Author: Chef (191201771@qq.com)
package base
import (

@ -1,3 +1,11 @@
// Copyright 2022, Chef. All rights reserved.
// https://github.com/q191201771/lal
//
// Use of this source code is governed by a MIT-style license
// that can be found in the License file.
//
// Author: Chef (191201771@qq.com)
package base
// t_http_an__.go

@ -21,7 +21,7 @@ const LalVersion = "v0.29.1"
// ConfVersion lalserver的配置文件的版本号
//
const ConfVersion = "v0.3.2"
const ConfVersion = "v0.3.3"
// HttpApiVersion lalserver的HTTP-API功能的版本号
//
@ -29,7 +29,7 @@ const HttpApiVersion = "v0.3.3"
// HttpNotifyVersion lalserver的HTTP-Notify功能的版本号
//
const HttpNotifyVersion = "v0.1.3"
const HttpNotifyVersion = "v0.1.4"
var (
LalLibraryName = "lal"

@ -1,3 +1,11 @@
// Copyright 2022, Chef. All rights reserved.
// https://github.com/q191201771/lal
//
// Use of this source code is governed by a MIT-style license
// that can be found in the License file.
//
// Author: Chef (191201771@qq.com)
package gb28181
const (

@ -161,6 +161,6 @@ func (h *HttpNotify) asyncPost(url string, info interface{}) {
func (h *HttpNotify) post(url string, info interface{}) {
if _, err := nazahttp.PostJson(url, info, h.client); err != nil {
Log.Errorf("http notify post error. err=%+v", err)
Log.Errorf("http notify post error. err=%+v, url=%s, info=%+v", err, url, info)
}
}

@ -1,3 +1,11 @@
// Copyright 2022, Chef. All rights reserved.
// https://github.com/q191201771/lal
//
// Use of this source code is governed by a MIT-style license
// that can be found in the License file.
//
// Author: Chef (191201771@qq.com)
package logic
import (

Loading…
Cancel
Save