summaryrefslogtreecommitdiff
path: root/IvyToDel/IvyPPC/IvyProtocol.cs
diff options
context:
space:
mode:
authorfcolin2007-02-01 12:05:47 +0000
committerfcolin2007-02-01 12:05:47 +0000
commit3593a483d5566779f1d56e037615685cdc77c0a0 (patch)
tree300986bb2f463148fd0773efc5f69654ae2cd53f /IvyToDel/IvyPPC/IvyProtocol.cs
parent3ce9b3f180e3f52c7be79e0a23bbd1a0b5120ac6 (diff)
downloadivy-csharp-3593a483d5566779f1d56e037615685cdc77c0a0.zip
ivy-csharp-3593a483d5566779f1d56e037615685cdc77c0a0.tar.gz
ivy-csharp-3593a483d5566779f1d56e037615685cdc77c0a0.tar.bz2
ivy-csharp-3593a483d5566779f1d56e037615685cdc77c0a0.tar.xz
modification structure svn
Diffstat (limited to 'IvyToDel/IvyPPC/IvyProtocol.cs')
-rw-r--r--IvyToDel/IvyPPC/IvyProtocol.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/IvyToDel/IvyPPC/IvyProtocol.cs b/IvyToDel/IvyPPC/IvyProtocol.cs
deleted file mode 100644
index 1b1f3aa..0000000
--- a/IvyToDel/IvyPPC/IvyProtocol.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-using System;
-using System.Text;
-
-namespace IvyBus
-{
- public enum BindingType { Regexp, Simple };
-
- internal interface IvyProtocol
- {
- void Close();
- bool receiveMsg();
- void TokenStartRegexp(ushort port, string appName);
- void TokenEndRegexp();
- void TokenApplicationId(ushort priority, string appId);
- void TokenAddBinding(BindingType type, ushort id, string expression);
- void TokenDelBinding(ushort bind);
- void TokenDirectMsg(ushort id, string message);
- void TokenPong(string s);
- void TokenPing(string s);
- void TokenBye(ushort id, string message);
- void TokenDie(ushort err, string message);
- void TokenMsg(ushort key, string[] args);
- void TokenError(ushort id, string message);
- }
-}