java qq协议 c#,PCQQ协议 C#版本

【实例简介】

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

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值