/****************************************************************/
/* server.h                                                     */
/* Justin Hartman                                               */
/* EECS 338 - Spring 2003                                       */
/* Assignment 6                                                 */
/****************************************************************/

/****************************************************************/
/* Written in Microsoft Visual C++ .NET                         */
/* Compiled and executed on CWRU's EECS department              */
/* lab's (Olin 404.5) SUN boxes using SSH and                   */
/* secure FTP                                                   */
/****************************************************************/

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <limits.h>
#include <string.h>
#include <ctype.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <netdb.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <errno.h>

#define		MAX_INPUT_SIZE	254
#define		SERVICE_PORT	13279
#define		FILEBUF_SIZE	1000

void put(char * filename, int sck);
void get(char * filename, int sck);
void ls(int sck);