Subversion Repositories HomeAutomation

Rev

Rev 363 | Blame | Compare with Previous | Last modification | View Log | SVN | RSS feed

  1. /*********************************************************************
  2.  *
  3.  *  Generic TCP Client Example Application
  4.  *   -Implements an example HTTP client and should be used as a basis
  5.  *    for creating new TCP client applications
  6.  *
  7.  *********************************************************************
  8.  * FileName:        GenericTCPClient.c
  9.  * Dependencies:    TCP.h, DNS.h
  10.  * Processor:       PIC18, PIC24F, PIC24H, dsPIC30, dsPIC33F
  11.  * Complier:        Microchip C18 v3.03 or higher
  12.  *                  Microchip C30 v2.02 or higher
  13.  * Company:         Microchip Technology, Inc.
  14.  *
  15.  * Software License Agreement
  16.  *
  17.  * This software is owned by Microchip Technology Inc. ("Microchip")
  18.  * and is supplied to you for use exclusively as described in the
  19.  * associated software agreement.  This software is protected by
  20.  * software and other intellectual property laws.  Any use in
  21.  * violation of the software license may subject the user to criminal
  22.  * sanctions as well as civil liability.  Copyright 2006 Microchip
  23.  * Technology Inc.  All rights reserved.
  24.  *
  25.  * This software is provided "AS IS."  MICROCHIP DISCLAIMS ALL
  26.  * WARRANTIES, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, NOT LIMITED
  27.  * TO MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND
  28.  * INFRINGEMENT.  Microchip shall in no event be liable for special,
  29.  * incidental, or consequential damages.
  30.  *
  31.  *
  32.  * Author               Date    Comment
  33.  *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  34.  * Howard Schlunder     8/02/06 Original
  35.  ********************************************************************/
  36. #ifndef GENERIC_TCP_CLIENT_H
  37. #define GENERIC_TCP_CLIENT_H
  38.  
  39. void GenericTCPClient(void);
  40.  
  41. #endif
  42.