实例介绍
PCQQ协议 PCQQ协议
【实例截图】
【核心代码】
PCQQ-Agreement-master
└── PCQQ-Agreement-master
├── LICENSE
├── pc-koukou
├── QQ.Framework
│ ├── bin
│ │ └── Debug
│ │ ├── Ionic.Zlib.dll
│ │ ├── Newtonsoft.Json.dll
│ │ ├── QQ.Framework.dll
│ │ └── QQ.Framework.pdb
│ ├── Docs
│ │ ├── add_your_custom_robot.md
│ │ ├── MessageManage.md
│ │ └── UMLs
│ │ └── RoBot.png
│ ├── 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
│ │ │ │ ├── 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
│ │ │ │ └── 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
│ ├── obj
│ │ ├── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── QQ.Framework.csproj.CopyComplete
│ │ │ ├── QQ.Framework.csproj.CoreCompileInputs.cache
│ │ │ ├── QQ.Framework.csproj.FileListAbsolute.txt
│ │ │ ├── QQ.Framework.dll
│ │ │ ├── QQ.Framework.pdb
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── project.assets.json
│ │ ├── QQ.Framework.csproj.nuget.cache
│ │ ├── QQ.Framework.csproj.nuget.g.props
│ │ └── QQ.Framework.csproj.nuget.g.targets
│ ├── Packets
│ │ ├── HttpEntity
│ │ │ ├── FriendList.cs
│ │ │ ├── GroupList.cs
│ │ │ └── GroupMembers.cs
│ │ ├── Packet.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
│ │ ├── 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_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_0x03E3.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
│ ├── TlvLib
│ │ └── Tlv.cs
│ ├── TXProtocol.cs
│ └── Utils
│ ├── CRC32.cs
│ ├── DispatchPacketToCommand.cs
│ ├── GZipByteArray.cs
│ ├── HttpWebClient.cs
│ ├── ImageHelper.cs
│ ├── QdData.cs
│ ├── QQTea.cs
│ ├── ResponsePacketProcessor.cs
│ ├── Richtext.cs
│ ├── StringHandlingPackets.cs
│ ├── TeaCrypter.cs
│ ├── Util.cs
│ └── XXTeaCrypter.cs
├── QQ.FrameworkTest
│ ├── bin
│ │ └── Debug
│ │ ├── Ionic.Zlib.dll
│ │ ├── Machine.Specifications.dll
│ │ ├── Machine.Specifications.Should.dll
│ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
│ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll
│ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll
│ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll
│ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll
│ │ ├── Newtonsoft.Json.dll
│ │ ├── QQ.Framework.dll
│ │ ├── QQ.Framework.pdb
│ │ ├── QQ.FrameworkTest.dll
│ │ ├── QQ.FrameworkTest.pdb
│ │ └── zh-Hans
│ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│ ├── Domains
│ │ └── Commands
│ │ └── ReceiveCommands
│ │ └── Login
│ │ └── LoginPingPacketCommandSpecs.cs
│ ├── GZipByteArrayTest.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── QQ.FrameworkTest.csprojAssemblyReference.cache
│ │ │ ├── QQ.FrameworkTest.csproj.CopyComplete
│ │ │ ├── QQ.FrameworkTest.csproj.CoreCompileInputs.cache
│ │ │ ├── QQ.FrameworkTest.csproj.FileListAbsolute.txt
│ │ │ ├── QQ.FrameworkTest.dll
│ │ │ ├── QQ.FrameworkTest.pdb
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── project.assets.json
│ │ ├── QQ.FrameworkTest.csproj.nuget.cache
│ │ ├── QQ.FrameworkTest.csproj.nuget.g.props
│ │ └── QQ.FrameworkTest.csproj.nuget.g.targets
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── QQ.FrameworkTest.csproj
│ └── Robots
│ └── TestRobot.cs
├── QQ-King.sln
├── QQLoginTest
│ ├── bin
│ │ └── Debug
│ │ ├── Ionic.Zlib.dll
│ │ ├── Newtonsoft.Json.dll
│ │ ├── QQ.Framework.dll
│ │ ├── QQ.Framework.pdb
│ │ ├── QQLoginTest.exe
│ │ └── QQLoginTest.pdb
│ ├── obj
│ │ └── Debug
│ │ ├── QQLoginTest.csprojAssemblyReference.cache
│ │ ├── QQLoginTest.csproj.CopyComplete
│ │ ├── QQLoginTest.csproj.CoreCompileInputs.cache
│ │ ├── QQLoginTest.csproj.FileListAbsolute.txt
│ │ ├── QQLoginTest.exe
│ │ ├── QQLoginTest.pdb
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ ├── Program.cs
│ ├── QQLoginTest.csproj
│ ├── QQLoginTest.csproj.user
│ └── Robots
│ └── TestRobot.cs
├── README.md
└── tox_save.png
55 directories, 265 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论