Commit b4dc91f2 authored by jiahua.liu's avatar jiahua.liu

Group Listener

parent 96c3e775
...@@ -116,7 +116,6 @@ internal class OnlinePush { ...@@ -116,7 +116,6 @@ internal class OnlinePush {
debug += " " + time + "s" debug += " " + time + "s"
} }
} }
3585 -> { 3585 -> {
val operatorUin = this.readUInt().toLong() val operatorUin = this.readUInt().toLong()
debug += " 管理员 $operatorUin" debug += " 管理员 $operatorUin"
...@@ -127,7 +126,6 @@ internal class OnlinePush { ...@@ -127,7 +126,6 @@ internal class OnlinePush {
debug += " 关闭 " debug += " 关闭 "
} }
} }
4096 -> { 4096 -> {
val dataBytes = this.readBytes(26) val dataBytes = this.readBytes(26)
val message = this.readString(this.readByte().toInt()) val message = this.readString(this.readByte().toInt())
...@@ -153,6 +151,10 @@ internal class OnlinePush { ...@@ -153,6 +151,10 @@ internal class OnlinePush {
println("unknown group internal type $internalType , data: " + this.readBytes().toUHexString() + " ") println("unknown group internal type $internalType , data: " + this.readBytes().toUHexString() + " ")
} }
} }
} else if (msgInfo.shMsgType.toInt() == 528) {
} else if (msgInfo.shMsgType.toInt() == 4352) {
} else { } else {
println("unknown shtype ${msgInfo.shMsgType.toInt()}") println("unknown shtype ${msgInfo.shMsgType.toInt()}")
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment