summaryrefslogtreecommitdiff
path: root/Ivy/IvyTCPStream.cs
diff options
context:
space:
mode:
authorfcolin2007-02-01 12:04:16 +0000
committerfcolin2007-02-01 12:04:16 +0000
commit92757a8d629812303ff3665343bd098917cca611 (patch)
treecd995c9863aa6fc4c32ec5ce247e4c3119eb44a3 /Ivy/IvyTCPStream.cs
parent98ab5d0164040427f7c554febae125686284e2a7 (diff)
downloadivy-csharp-92757a8d629812303ff3665343bd098917cca611.zip
ivy-csharp-92757a8d629812303ff3665343bd098917cca611.tar.gz
ivy-csharp-92757a8d629812303ff3665343bd098917cca611.tar.bz2
ivy-csharp-92757a8d629812303ff3665343bd098917cca611.tar.xz
modification structure svn
Diffstat (limited to 'Ivy/IvyTCPStream.cs')
-rw-r--r--Ivy/IvyTCPStream.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/Ivy/IvyTCPStream.cs b/Ivy/IvyTCPStream.cs
new file mode 100644
index 0000000..b8fee34
--- /dev/null
+++ b/Ivy/IvyTCPStream.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Specialized;
+using System.Text;
+using System.Net;
+using System.Net.Sockets;
+using System.IO;
+
+namespace IvyBus
+{
+ abstract class IvyTCPStream : NetworkStream
+ {
+ public IvyTCPStream(Socket socket)
+ : base(socket, true)
+ {
+ }
+
+ abstract internal bool receiveMsg();
+
+ }
+}