PingPong

Dependencies:   EthernetInterface_pm mbed-rtos mbed

Headers/Http_post.h

Committer:
rebonatto
Date:
2014-03-27
Revision:
1:b343d9cd769a
Parent:
0:c8f056a185d0

File content as of revision 1:b343d9cd769a:

/*
 * Http_post.h
 *
 *  Created on: 10/09/2013
 *      Author: Marcelo Trindade Rebonatto
 */
#ifndef HTTP_POST_H
#define HTTP_POST_H

#include <mbed.h>
#include <rtos.h>

#include "EthernetInterface.h"    

extern void HttpPost_Thread(void const *arg);

class HttpPost
{

public:
    static int getCountCnt() ;
    static int getCountSnd() ;   
    static void HttpPost_Thread(void const *arg);
    static void DoPost(TCPSocketConnection sock, char *host);
    static void PreparePost(char *strfinal);
};

#endif //#ifndef HTTP_POST_H