├── .gitignore ├── .travis.yml ├── LICENSE ├── QQ-King.sln ├── QQ.Framework ├── Docs │ ├── MessageManage.md │ ├── UMLs │ │ └── RoBot.png │ └── add_your_custom_robot.md ├── Domains │ ├── Commands │ │ ├── PacketCommand.cs │ │ ├── ReceiveCommand.cs │ │ ├── ReceiveCommands │ │ │ ├── Data │ │ │ │ ├── Data0X00D8Command.cs │ │ │ │ ├── Data0X0134Command.cs │ │ │ │ ├── Data0X019BCommand.cs │ │ │ │ ├── Data0X01C4Command.cs │ │ │ │ ├── Data0X01C5Command.cs │ │ │ │ ├── GetQQLevelCommand.cs │ │ │ │ ├── GroupCategoryCommand.cs │ │ │ │ └── KeyQueryCommand.cs │ │ │ ├── DefaultReceiveCommand.cs │ │ │ ├── Login │ │ │ │ ├── GetTGTGTCommand.cs │ │ │ │ ├── LoginPingCommand.cs │ │ │ │ ├── LogonCollectionCommand.cs │ │ │ │ ├── OnLineStateCommand.cs │ │ │ │ ├── PreLoginCommand.cs │ │ │ │ └── VerifyCodeCommand.cs │ │ │ └── Message │ │ │ │ ├── KeepAliveCommand.cs │ │ │ │ ├── PictureCommand.cs │ │ │ │ ├── RecallGroupMessagesCommand.cs │ │ │ │ ├── RecallQQFriendMessagesCommand.cs │ │ │ │ ├── ReceiveGroupSystemMessagesCommand.cs │ │ │ │ ├── ReceiveQQFriendMessagesCommand.cs │ │ │ │ ├── SendingGroupSystemMessagesCommand.cs │ │ │ │ └── SendingQQMessagesCommand.cs │ │ ├── ReceivePacketCommand.cs │ │ ├── ResponseCommand.cs │ │ ├── ResponseCommands │ │ │ ├── Data │ │ │ │ ├── Data0X0134Command.cs │ │ │ │ └── ResponseKeyQueryCommand.cs │ │ │ ├── DefaultResponseCommand.cs │ │ │ ├── Login │ │ │ │ ├── LoginPingResponseCommand.cs │ │ │ │ ├── LoginVerifyCommand.cs │ │ │ │ ├── PreLoginResponseCommand.cs │ │ │ │ ├── QQLineStateResponseCommand.cs │ │ │ │ └── VerifyCodeResponseCommand.cs │ │ │ └── Message │ │ │ │ ├── ResponseGroupOrSystemMessageCommand.cs │ │ │ │ ├── ResponseKeepliveCommand.cs │ │ │ │ ├── ResponsePictureCommand.cs │ │ │ │ └── ResponseReceiveFriendMessageCommand.cs │ │ └── ResponsePacketCommand.cs │ ├── CustomRobot.cs │ ├── Observers │ │ └── ServerMessageObserver.cs │ ├── PacketProcessor.cs │ ├── ReceiveData.cs │ ├── ResponsiveMessages.cs │ ├── SendMessageService.cs │ ├── SendMessageServiceImpl.cs │ ├── ServerMessageSubject.cs │ ├── SocketService.cs │ ├── SocketServiceImpl.cs │ └── Transponder.cs ├── Events │ └── QQEventArgs.cs ├── Packets │ ├── HttpEntity │ │ ├── FriendList.cs │ │ ├── GroupList.cs │ │ └── GroupMembers.cs │ ├── PCTLV │ │ ├── BaseTLV.cs │ │ ├── TLV_0004.cs │ │ ├── TLV_0005.cs │ │ ├── TLV_0006.cs │ │ ├── TLV_0007.cs │ │ ├── TLV_0008.cs │ │ ├── TLV_000A.cs │ │ ├── TLV_000C.cs │ │ ├── TLV_000D.cs │ │ ├── TLV_0014.cs │ │ ├── TLV_0015.cs │ │ ├── TLV_0017.cs │ │ ├── TLV_0018.cs │ │ ├── TLV_001A.cs │ │ ├── TLV_001E.cs │ │ ├── TLV_001F.cs │ │ ├── TLV_002D.cs │ │ ├── TLV_002F.cs │ │ ├── TLV_0032.cs │ │ ├── TLV_0033.cs │ │ ├── TLV_0036.cs │ │ ├── TLV_0100.cs │ │ ├── TLV_0102.cs │ │ ├── TLV_0103.cs │ │ ├── TLV_0104.cs │ │ ├── TLV_0105.cs │ │ ├── TLV_0107.cs │ │ ├── TLV_0108.cs │ │ ├── TLV_0109.cs │ │ ├── TLV_010B.cs │ │ ├── TLV_010C.cs │ │ ├── TLV_010D.cs │ │ ├── TLV_010E.cs │ │ ├── TLV_0110.cs │ │ ├── TLV_0112.cs │ │ ├── TLV_0114.cs │ │ ├── TLV_0115.cs │ │ ├── TLV_0309.cs │ │ ├── TLV_030F.cs │ │ ├── TLV_0310.cs │ │ ├── TLV_0312.cs │ │ ├── TLV_0313.cs │ │ ├── TLV_0404.cs │ │ ├── TLV_0508.cs │ │ ├── TLV_050C.cs │ │ └── TlvTagAttribute.cs │ ├── Packet.cs │ ├── Receive │ │ ├── Data │ │ │ ├── Receive_0x001D.cs │ │ │ ├── Receive_0x005C.cs │ │ │ ├── Receive_0x00D8.cs │ │ │ ├── Receive_0x0126.cs │ │ │ ├── Receive_0x0134.cs │ │ │ ├── Receive_0x0195.cs │ │ │ ├── Receive_0x019B.cs │ │ │ ├── Receive_0x01A5.cs │ │ │ ├── Receive_0x01C4.cs │ │ │ └── Receive_0x01C5.cs │ │ ├── Interactive │ │ │ ├── Receive_0x00A7.cs │ │ │ ├── Receive_0x00A8.cs │ │ │ ├── Receive_0x00AE.cs │ │ │ └── Receive_0x0115.cs │ │ ├── Login │ │ │ ├── Receive_0x00BA.cs │ │ │ ├── Receive_0x00EC.cs │ │ │ ├── Receive_0x0825.cs │ │ │ ├── Receive_0x0828.cs │ │ │ ├── Receive_0x0836.cs │ │ │ └── Receive_0x0839.cs │ │ └── Message │ │ │ ├── Receive_0x0002.cs │ │ │ ├── Receive_0x0017.cs │ │ │ ├── Receive_0x0058.cs │ │ │ ├── Receive_0x00CD.cs │ │ │ ├── Receive_0x00CE.cs │ │ │ ├── Receive_0x01C0.cs │ │ │ ├── Receive_0x0319.cs │ │ │ ├── Receive_0x0352.cs │ │ │ ├── Receive_0x0360.cs │ │ │ ├── Receive_0x0388.cs │ │ │ ├── Receive_0x03E3.cs │ │ │ ├── Receive_0x03F7.cs │ │ │ ├── Receive_0x03FC.cs │ │ │ └── Receive_Currency.cs │ ├── ReceivePacket.cs │ ├── Send │ │ ├── Data │ │ │ ├── Send_0x001D.cs │ │ │ ├── Send_0x005C.cs │ │ │ ├── Send_0x00D8.cs │ │ │ ├── Send_0x0126.cs │ │ │ ├── Send_0x0134.cs │ │ │ ├── Send_0x0195.cs │ │ │ ├── Send_0x019B.cs │ │ │ ├── Send_0x01A5.cs │ │ │ ├── Send_0x01C4.cs │ │ │ └── Send_0x01C5.cs │ │ ├── Interactive │ │ │ ├── Send_0x00A7.cs │ │ │ ├── Send_0x00A8.cs │ │ │ ├── Send_0x00AE.cs │ │ │ └── Send_0x0115.cs │ │ ├── Login │ │ │ ├── Send_0x00BA.cs │ │ │ ├── Send_0x00EC.cs │ │ │ ├── Send_0x0825.cs │ │ │ ├── Send_0x0828.cs │ │ │ ├── Send_0x0836.cs │ │ │ └── Send_0x0839.cs │ │ └── Message │ │ │ ├── Send_0x0002.cs │ │ │ ├── Send_0x0017.cs │ │ │ ├── Send_0x0058.cs │ │ │ ├── Send_0x00CD.cs │ │ │ ├── Send_0x00CE.cs │ │ │ ├── Send_0x01C0.cs │ │ │ ├── Send_0x0319.cs │ │ │ ├── Send_0x0352.cs │ │ │ ├── Send_0x0360.cs │ │ │ ├── Send_0x0388.cs │ │ │ ├── Send_0x0391.cs │ │ │ ├── Send_0x03E3.cs │ │ │ ├── Send_0x03F7.cs │ │ │ ├── Send_0x03FC.cs │ │ │ └── Send_Currency.cs │ └── SendPacket.cs ├── Properties │ └── AssemblyInfo.cs ├── QQ.Framework.csproj ├── QQ.Framework.csproj.user ├── QQGlobal.cs ├── QQUser.cs ├── Sockets │ ├── MessageManage.cs │ └── TimersInvoke.cs ├── TXProtocol.cs ├── TlvLib │ └── Tlv.cs └── Utils │ ├── CRC32.cs │ ├── DispatchPacketToCommand.cs │ ├── GZipByteArray.cs │ ├── HttpWebClient.cs │ ├── ImageHelper.cs │ ├── QQTea.cs │ ├── QdData.cs │ ├── ResponsePacketProcessor.cs │ ├── Richtext.cs │ ├── StringHandlingPackets.cs │ ├── TeaCrypter.cs │ ├── Util.cs │ └── XXTeaCrypter.cs ├── QQ.FrameworkTest ├── Domains │ └── Commands │ │ └── ReceiveCommands │ │ └── Login │ │ └── LoginPingPacketCommandSpecs.cs ├── GZipByteArrayTest.cs ├── Properties │ └── AssemblyInfo.cs ├── QQ.FrameworkTest.csproj └── Robots │ └── TestRobot.cs ├── QQLoginTest ├── Program.cs ├── QQLoginTest.csproj └── Robots │ └── TestRobot.cs ├── README.md └── tox_save.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/LICENSE -------------------------------------------------------------------------------- /QQ-King.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ-King.sln -------------------------------------------------------------------------------- /QQ.Framework/Docs/MessageManage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Docs/MessageManage.md -------------------------------------------------------------------------------- /QQ.Framework/Docs/UMLs/RoBot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Docs/UMLs/RoBot.png -------------------------------------------------------------------------------- /QQ.Framework/Docs/add_your_custom_robot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Docs/add_your_custom_robot.md -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/PacketCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/PacketCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceiveCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceiveCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceiveCommands/Data/Data0X00D8Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceiveCommands/Data/Data0X00D8Command.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceiveCommands/Data/Data0X0134Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceiveCommands/Data/Data0X0134Command.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceiveCommands/Data/Data0X019BCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceiveCommands/Data/Data0X019BCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceiveCommands/Data/Data0X01C4Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceiveCommands/Data/Data0X01C4Command.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceiveCommands/Data/Data0X01C5Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceiveCommands/Data/Data0X01C5Command.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceiveCommands/Data/GetQQLevelCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceiveCommands/Data/GetQQLevelCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceiveCommands/Data/GroupCategoryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceiveCommands/Data/GroupCategoryCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceiveCommands/Data/KeyQueryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceiveCommands/Data/KeyQueryCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceiveCommands/DefaultReceiveCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceiveCommands/DefaultReceiveCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceiveCommands/Login/GetTGTGTCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceiveCommands/Login/GetTGTGTCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceiveCommands/Login/LoginPingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceiveCommands/Login/LoginPingCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceiveCommands/Login/LogonCollectionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceiveCommands/Login/LogonCollectionCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceiveCommands/Login/OnLineStateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceiveCommands/Login/OnLineStateCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceiveCommands/Login/PreLoginCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceiveCommands/Login/PreLoginCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceiveCommands/Login/VerifyCodeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceiveCommands/Login/VerifyCodeCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceiveCommands/Message/KeepAliveCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceiveCommands/Message/KeepAliveCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceiveCommands/Message/PictureCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceiveCommands/Message/PictureCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceiveCommands/Message/RecallGroupMessagesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceiveCommands/Message/RecallGroupMessagesCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceiveCommands/Message/RecallQQFriendMessagesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceiveCommands/Message/RecallQQFriendMessagesCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceiveCommands/Message/ReceiveGroupSystemMessagesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceiveCommands/Message/ReceiveGroupSystemMessagesCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceiveCommands/Message/ReceiveQQFriendMessagesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceiveCommands/Message/ReceiveQQFriendMessagesCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceiveCommands/Message/SendingGroupSystemMessagesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceiveCommands/Message/SendingGroupSystemMessagesCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceiveCommands/Message/SendingQQMessagesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceiveCommands/Message/SendingQQMessagesCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ReceivePacketCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ReceivePacketCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ResponseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ResponseCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ResponseCommands/Data/Data0X0134Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ResponseCommands/Data/Data0X0134Command.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ResponseCommands/Data/ResponseKeyQueryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ResponseCommands/Data/ResponseKeyQueryCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ResponseCommands/DefaultResponseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ResponseCommands/DefaultResponseCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ResponseCommands/Login/LoginPingResponseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ResponseCommands/Login/LoginPingResponseCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ResponseCommands/Login/LoginVerifyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ResponseCommands/Login/LoginVerifyCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ResponseCommands/Login/PreLoginResponseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ResponseCommands/Login/PreLoginResponseCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ResponseCommands/Login/QQLineStateResponseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ResponseCommands/Login/QQLineStateResponseCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ResponseCommands/Login/VerifyCodeResponseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ResponseCommands/Login/VerifyCodeResponseCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ResponseCommands/Message/ResponseGroupOrSystemMessageCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ResponseCommands/Message/ResponseGroupOrSystemMessageCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ResponseCommands/Message/ResponseKeepliveCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ResponseCommands/Message/ResponseKeepliveCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ResponseCommands/Message/ResponsePictureCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ResponseCommands/Message/ResponsePictureCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ResponseCommands/Message/ResponseReceiveFriendMessageCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ResponseCommands/Message/ResponseReceiveFriendMessageCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Commands/ResponsePacketCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Commands/ResponsePacketCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/CustomRobot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/CustomRobot.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Observers/ServerMessageObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Observers/ServerMessageObserver.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/PacketProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/PacketProcessor.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/ReceiveData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/ReceiveData.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/ResponsiveMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/ResponsiveMessages.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/SendMessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/SendMessageService.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/SendMessageServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/SendMessageServiceImpl.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/ServerMessageSubject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/ServerMessageSubject.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/SocketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/SocketService.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/SocketServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/SocketServiceImpl.cs -------------------------------------------------------------------------------- /QQ.Framework/Domains/Transponder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Domains/Transponder.cs -------------------------------------------------------------------------------- /QQ.Framework/Events/QQEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Events/QQEventArgs.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/HttpEntity/FriendList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/HttpEntity/FriendList.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/HttpEntity/GroupList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/HttpEntity/GroupList.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/HttpEntity/GroupMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/HttpEntity/GroupMembers.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/BaseTLV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/BaseTLV.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0004.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0004.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0005.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0005.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0006.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0006.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0007.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0007.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0008.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0008.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_000A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_000A.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_000C.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_000C.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_000D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_000D.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0014.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0014.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0015.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0015.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0017.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0017.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0018.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0018.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_001A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_001A.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_001E.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_001E.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_001F.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_001F.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_002D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_002D.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_002F.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_002F.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0032.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0032.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0033.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0033.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0036.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0036.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0100.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0100.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0102.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0102.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0103.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0103.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0104.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0104.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0105.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0105.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0107.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0107.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0108.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0108.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0109.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0109.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_010B.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_010B.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_010C.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_010C.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_010D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_010D.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_010E.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_010E.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0110.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0110.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0112.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0112.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0114.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0114.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0115.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0115.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0309.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0309.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_030F.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_030F.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0310.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0310.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0312.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0312.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0313.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0313.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0404.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0404.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_0508.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_0508.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TLV_050C.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TLV_050C.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/PCTLV/TlvTagAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/PCTLV/TlvTagAttribute.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Packet.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Data/Receive_0x001D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Data/Receive_0x001D.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Data/Receive_0x005C.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Data/Receive_0x005C.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Data/Receive_0x00D8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Data/Receive_0x00D8.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Data/Receive_0x0126.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Data/Receive_0x0126.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Data/Receive_0x0134.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Data/Receive_0x0134.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Data/Receive_0x0195.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Data/Receive_0x0195.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Data/Receive_0x019B.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Data/Receive_0x019B.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Data/Receive_0x01A5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Data/Receive_0x01A5.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Data/Receive_0x01C4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Data/Receive_0x01C4.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Data/Receive_0x01C5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Data/Receive_0x01C5.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Interactive/Receive_0x00A7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Interactive/Receive_0x00A7.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Interactive/Receive_0x00A8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Interactive/Receive_0x00A8.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Interactive/Receive_0x00AE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Interactive/Receive_0x00AE.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Interactive/Receive_0x0115.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Interactive/Receive_0x0115.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Login/Receive_0x00BA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Login/Receive_0x00BA.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Login/Receive_0x00EC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Login/Receive_0x00EC.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Login/Receive_0x0825.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Login/Receive_0x0825.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Login/Receive_0x0828.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Login/Receive_0x0828.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Login/Receive_0x0836.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Login/Receive_0x0836.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Login/Receive_0x0839.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Login/Receive_0x0839.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Message/Receive_0x0002.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Message/Receive_0x0002.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Message/Receive_0x0017.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Message/Receive_0x0017.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Message/Receive_0x0058.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Message/Receive_0x0058.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Message/Receive_0x00CD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Message/Receive_0x00CD.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Message/Receive_0x00CE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Message/Receive_0x00CE.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Message/Receive_0x01C0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Message/Receive_0x01C0.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Message/Receive_0x0319.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Message/Receive_0x0319.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Message/Receive_0x0352.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Message/Receive_0x0352.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Message/Receive_0x0360.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Message/Receive_0x0360.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Message/Receive_0x0388.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Message/Receive_0x0388.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Message/Receive_0x03E3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Message/Receive_0x03E3.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Message/Receive_0x03F7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Message/Receive_0x03F7.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Message/Receive_0x03FC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Message/Receive_0x03FC.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Receive/Message/Receive_Currency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Receive/Message/Receive_Currency.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/ReceivePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/ReceivePacket.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Data/Send_0x001D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Data/Send_0x001D.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Data/Send_0x005C.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Data/Send_0x005C.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Data/Send_0x00D8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Data/Send_0x00D8.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Data/Send_0x0126.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Data/Send_0x0126.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Data/Send_0x0134.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Data/Send_0x0134.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Data/Send_0x0195.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Data/Send_0x0195.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Data/Send_0x019B.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Data/Send_0x019B.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Data/Send_0x01A5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Data/Send_0x01A5.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Data/Send_0x01C4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Data/Send_0x01C4.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Data/Send_0x01C5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Data/Send_0x01C5.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Interactive/Send_0x00A7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Interactive/Send_0x00A7.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Interactive/Send_0x00A8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Interactive/Send_0x00A8.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Interactive/Send_0x00AE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Interactive/Send_0x00AE.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Interactive/Send_0x0115.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Interactive/Send_0x0115.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Login/Send_0x00BA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Login/Send_0x00BA.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Login/Send_0x00EC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Login/Send_0x00EC.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Login/Send_0x0825.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Login/Send_0x0825.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Login/Send_0x0828.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Login/Send_0x0828.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Login/Send_0x0836.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Login/Send_0x0836.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Login/Send_0x0839.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Login/Send_0x0839.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Message/Send_0x0002.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Message/Send_0x0002.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Message/Send_0x0017.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Message/Send_0x0017.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Message/Send_0x0058.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Message/Send_0x0058.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Message/Send_0x00CD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Message/Send_0x00CD.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Message/Send_0x00CE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Message/Send_0x00CE.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Message/Send_0x01C0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Message/Send_0x01C0.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Message/Send_0x0319.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Message/Send_0x0319.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Message/Send_0x0352.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Message/Send_0x0352.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Message/Send_0x0360.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Message/Send_0x0360.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Message/Send_0x0388.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Message/Send_0x0388.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Message/Send_0x0391.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Message/Send_0x0391.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Message/Send_0x03E3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Message/Send_0x03E3.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Message/Send_0x03F7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Message/Send_0x03F7.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Message/Send_0x03FC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Message/Send_0x03FC.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/Send/Message/Send_Currency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/Send/Message/Send_Currency.cs -------------------------------------------------------------------------------- /QQ.Framework/Packets/SendPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Packets/SendPacket.cs -------------------------------------------------------------------------------- /QQ.Framework/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /QQ.Framework/QQ.Framework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/QQ.Framework.csproj -------------------------------------------------------------------------------- /QQ.Framework/QQ.Framework.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/QQ.Framework.csproj.user -------------------------------------------------------------------------------- /QQ.Framework/QQGlobal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/QQGlobal.cs -------------------------------------------------------------------------------- /QQ.Framework/QQUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/QQUser.cs -------------------------------------------------------------------------------- /QQ.Framework/Sockets/MessageManage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Sockets/MessageManage.cs -------------------------------------------------------------------------------- /QQ.Framework/Sockets/TimersInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Sockets/TimersInvoke.cs -------------------------------------------------------------------------------- /QQ.Framework/TXProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/TXProtocol.cs -------------------------------------------------------------------------------- /QQ.Framework/TlvLib/Tlv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/TlvLib/Tlv.cs -------------------------------------------------------------------------------- /QQ.Framework/Utils/CRC32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Utils/CRC32.cs -------------------------------------------------------------------------------- /QQ.Framework/Utils/DispatchPacketToCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Utils/DispatchPacketToCommand.cs -------------------------------------------------------------------------------- /QQ.Framework/Utils/GZipByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Utils/GZipByteArray.cs -------------------------------------------------------------------------------- /QQ.Framework/Utils/HttpWebClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Utils/HttpWebClient.cs -------------------------------------------------------------------------------- /QQ.Framework/Utils/ImageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Utils/ImageHelper.cs -------------------------------------------------------------------------------- /QQ.Framework/Utils/QQTea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Utils/QQTea.cs -------------------------------------------------------------------------------- /QQ.Framework/Utils/QdData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Utils/QdData.cs -------------------------------------------------------------------------------- /QQ.Framework/Utils/ResponsePacketProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Utils/ResponsePacketProcessor.cs -------------------------------------------------------------------------------- /QQ.Framework/Utils/Richtext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Utils/Richtext.cs -------------------------------------------------------------------------------- /QQ.Framework/Utils/StringHandlingPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Utils/StringHandlingPackets.cs -------------------------------------------------------------------------------- /QQ.Framework/Utils/TeaCrypter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Utils/TeaCrypter.cs -------------------------------------------------------------------------------- /QQ.Framework/Utils/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Utils/Util.cs -------------------------------------------------------------------------------- /QQ.Framework/Utils/XXTeaCrypter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.Framework/Utils/XXTeaCrypter.cs -------------------------------------------------------------------------------- /QQ.FrameworkTest/Domains/Commands/ReceiveCommands/Login/LoginPingPacketCommandSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.FrameworkTest/Domains/Commands/ReceiveCommands/Login/LoginPingPacketCommandSpecs.cs -------------------------------------------------------------------------------- /QQ.FrameworkTest/GZipByteArrayTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.FrameworkTest/GZipByteArrayTest.cs -------------------------------------------------------------------------------- /QQ.FrameworkTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.FrameworkTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /QQ.FrameworkTest/QQ.FrameworkTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.FrameworkTest/QQ.FrameworkTest.csproj -------------------------------------------------------------------------------- /QQ.FrameworkTest/Robots/TestRobot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQ.FrameworkTest/Robots/TestRobot.cs -------------------------------------------------------------------------------- /QQLoginTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQLoginTest/Program.cs -------------------------------------------------------------------------------- /QQLoginTest/QQLoginTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQLoginTest/QQLoginTest.csproj -------------------------------------------------------------------------------- /QQLoginTest/Robots/TestRobot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/QQLoginTest/Robots/TestRobot.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/README.md -------------------------------------------------------------------------------- /tox_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LenLiin/PCQQ-Protocol--New/HEAD/tox_save.png --------------------------------------------------------------------------------