|
Server 0.0.1
HTTP/REST server implementation
|
00001 00023 #include "class.h" 00024 #include "http/interface/http_intro.h" 00025 00026 const struct interface i_HttpIntro = { 00027 "httpIntro", 00028 2 00029 }; 00030 00031 size_t 00032 httpIntroSizeGet(void * object) 00033 { 00034 size_t ret; 00035 00036 RETCALL(object, HttpIntro, sizeGet, ret); 00037 00038 return ret; 00039 } 00040 00041 char * 00042 httpIntroToString(void * object, char * string) 00043 { 00044 char * ret; 00045 00046 RETCALL(object, HttpIntro, toString, ret, string); 00047 00048 return ret; 00049 } 00050 00051 // vim: set ts=4 sw=4: