mirror of
https://github.com/kshdb/gb28181Panda.git
synced 2026-04-22 23:07:15 +08:00
15 lines
371 B
Go
15 lines
371 B
Go
package sipServer
|
|
|
|
import (
|
|
"fmt"
|
|
"gb28181Panda/config"
|
|
"gb28181Panda/log"
|
|
)
|
|
|
|
func transferFromLog(fromIp, fromPort string) {
|
|
log.Info(fmt.Sprintf("[%s:%d]<<<<<<[%s:%s]", config.SipOp.Ip, config.SipOp.Port, fromIp, fromPort))
|
|
}
|
|
func transferToLog(toIp, toPort string) {
|
|
log.Info(fmt.Sprintf("[%s:%d]>>>>[%s:%s]", config.SipOp.Ip, config.SipOp.Port, toIp, toPort))
|
|
}
|