W5200(WIZ820io) network interface

Revision:
1:803123933c5a
Parent:
0:61831b843b44
Child:
2:a8df39b4f3aa
--- a/TinyHTTP.h	Sat Apr 14 17:21:11 2012 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,38 +0,0 @@
-/*
- * mbed Tiny HTTP Client
- * Copyright (c) 2011 Hiroshi Suga
- * Released under the MIT License: http://mbed.org/license/mit
- */
-
-/** @file
- * @brief Tiny HTTP Client
- */
-
-#ifndef TinyHTTP_h
-#define TinyHTTP_h
-
-#define DEBUG
-
-#define HTTP_PORT 80
-#define HTTP_TIMEOUT 15000 // ms
-
-#define METHOD_GET 0
-#define METHOD_POST 1
-
-/** send http request
- * @param method METHOD_GET or METHOD_POST
- * @param host http server
- * @param uri URI
- * @param head http header (CR+LF) (or NULL)
- * @param body POST body (or NULL)
- * @return http code, -1:failue
- */
-int httpRequest (int method, Host *host, char *uri, char *head, char *body);
-
-void createauth (char *user, char *pwd, char *buf, int len);
-
-int base64enc(const char *input, unsigned int length, char *output, int len);
-
-int urlencode(char *str, char *buf, int len);
-
-#endif