Subversion Repositories Kolibri OS

Rev

Rev 6887 | Rev 8305 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6887 Rev 7283
Line 10... Line 10...
10
#endif
10
#endif
Line 11... Line 11...
11
 
11
 
12
dword libHTTP = #alibHTTP;
12
dword libHTTP = #alibHTTP;
Line 13... Line 13...
13
char alibHTTP[] = "/sys/lib/http.obj";
13
char alibHTTP[] = "/sys/lib/http.obj";
14
 
14
 
15
dword http_lib_init          = #aLib_init;
15
dword http_lib_init          = #aHTTPinit;
16
dword http_get               = #aHTTPget;
16
dword http_get               = #aHTTPget;
17
dword http_head              = #aHTTPhead;
17
dword http_head              = #aHTTPhead;
18
dword http_post              = #aHTTPpost;
18
dword http_post              = #aHTTPpost;
Line 23... Line 23...
23
dword http_free              = #aHTTPfree;
23
dword http_free              = #aHTTPfree;
24
dword uri_escape             = #aURIescape;
24
dword uri_escape             = #aURIescape;
25
dword uri_unescape           = #aURIunescape;
25
dword uri_unescape           = #aURIunescape;
26
$DD 2 dup 0
26
$DD 2 dup 0
Line 27... Line 27...
27
 
27
 
28
char aLib_init[]             = "lib_init";
28
char aHTTPinit[]             = "lib_init";
29
char aHTTPget[]              = "get";
29
char aHTTPget[]              = "get";
30
char aHTTPhead[]             = "head";
30
char aHTTPhead[]             = "head";
31
char aHTTPpost[]             = "post";
31
char aHTTPpost[]             = "post";
32
char aFHF[]                  = "find_header_field";
32
char aFHF[]                  = "find_header_field";