Working on a rough demo client/server app.

This commit is contained in:
antiduh
2014-06-25 21:28:03 +00:00
parent 6dfaa54b63
commit 2e6b847434
37 changed files with 2186 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TestClient
{
public enum ProtocolOp : uint
{
ClientToken = 1,
ServerToken = 2,
EncryptedMessage = 3,
SignedMessage = 4,
}
}