summaryrefslogtreecommitdiff
path: root/Ivy/IvyTCPStream.cs
blob: b8fee346e2dcebd3e03333f62b800c49ed995429 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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();

    }
}