//
//  Copyright © 2004, RESON Inc. All Rights Reserved.
//
//  No part of this file may be reproduced or transmitted in any form or by
//  any means, electronic or mechanical, including photocopy, recording, or
//  information storage or retrieval system, without permission in writing
//  from RESON Inc.
//
//  Filename:   
//
//  Project:    6046
//
//  Author(s):  W. Arcus
//
//  Purpose:    
//
//  Notes:      
//

#include "StdAfx.h"
#include "7kStreamSocket.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// 

C7kStreamSocket::C7kStreamSocket( void )
                :C7kSocket()
{
}

C7kStreamSocket::~C7kStreamSocket( void )
{
}

bool C7kStreamSocket::Configure( const unsigned short &runProtocolVersion )
{
    if ( ! C7kSocket::Configure( runProtocolVersion ) )
    {


        return true;
    }

    return false;
}

bool C7kStreamSocket::StartServer( void )
{
    if ( C7kSocket::StartServer() )
    {

        return true;
    }

    return false;
}

bool C7kStreamSocket::StopServer( void )
{
    return true;
}

bool C7kStreamSocket::Send( void )
{
    return true;
}

bool C7kStreamSocket::Receive( void )
{
    return true;
}
