/****************************************************************************/
/*                                                                          */
/*  FILE: cmd_unpark.c                                                      */
/*                                                                          */
/*  PURPOSE:                                                                */
/*      Execute a client command to "unpark" the system.                    */
/*                                                                          */
/*      At this point I don't exatly know what "unpark" entails.  Likely    */
/*      we fire up some DC power supplies and roll the roof back.           */
/*                                                                          */
/*  HISTORY:                                                                */   
/*      June 1998 -- Chris Albertson Started work                           */
/*                                                                          */
/****************************************************************************/
/*                                                                          */
/*                  Copyright (C) 1998 Chris Albertson.                     */
/*                                                                          */
/*   This program is free software; you can redistribute it and/or          */
/*   modify it under the terms of the GNU General Public License as         */ 
/*   published by the Free Software Foundation; either version 2, or        */ 
/*   (at your option) any later version.                                    */
/****************************************************************************/


/* Used by RCS and ident */
char cmd_unpark_rcsid[] = 
    "$Id: cmd_unpark.c,v 1.1 1998/08/04 05:08:47 chris Exp $";


#include <stdio.h>
#include <string.h>
#include <errno.h>

#include "MLog.h"
#include "server_lib.h"
#include "commands.h"
#include "tasks.h"
#include "time_funct.h"



/****************************************************************************/
/*                                                                          */
/*  cmd_unpark                                                              */
/*                                                                          */
/*  PURPOSE:                                                                */
/*      Execute the "unpark" command.                                       */
/*                                                                          */
/*  ARGUMENTS:                                                              */
/*      None.  Content of args[] is ignored                                 */
/*                                                                          */
/****************************************************************************/
int cmd_unpark(int sd, char args[])
{  
    ml_printf(ML_DEBUG, ML_INFORMATION,
        "cmd_unpark called\n");  
            
    /************************************************************************/
    /************************************************************************/
    /************************************************************************/
    /*                                                                      */
    /*                  THIS IS WHERE ALL THE CODE GOES                     */
    /*                                                                      */
    /************************************************************************/
    /************************************************************************/
    /************************************************************************/
        
    return CMD_OK;
}
