2013-11-04 14:07:21 +01:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; ;;
|
|
|
|
;; Copyright (C) KolibriOS team 2004-2013. All rights reserved. ;;
|
|
|
|
;; Distributed under terms of the GNU General Public License ;;
|
|
|
|
;; ;;
|
|
|
|
;; HTTP library for KolibriOS ;;
|
|
|
|
;; ;;
|
|
|
|
;; Written by hidnplayr@kolibrios.org ;;
|
|
|
|
;; ;;
|
|
|
|
;; GNU GENERAL PUBLIC LICENSE ;;
|
|
|
|
;; Version 2, June 1991 ;;
|
|
|
|
;; ;;
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
|
|
|
|
|
|
FLAG_HTTP11 = 1 shl 0
|
|
|
|
FLAG_GOT_HEADER = 1 shl 1
|
2013-11-11 12:35:18 +01:00
|
|
|
FLAG_GOT_ALL_DATA = 1 shl 2
|
2013-11-04 14:07:21 +01:00
|
|
|
FLAG_CONTENT_LENGTH = 1 shl 3
|
|
|
|
FLAG_CHUNKED = 1 shl 4
|
2013-11-11 12:35:18 +01:00
|
|
|
FLAG_CONNECTED = 1 shl 5
|
2013-11-04 14:07:21 +01:00
|
|
|
|
|
|
|
; error flags go into the upper word
|
|
|
|
FLAG_INVALID_HEADER = 1 shl 16
|
|
|
|
FLAG_NO_RAM = 1 shl 17
|
|
|
|
FLAG_SOCKET_ERROR = 1 shl 18
|
2013-11-11 13:29:54 +01:00
|
|
|
FLAG_TIMEOUT_ERROR = 1 shl 19
|
2013-11-04 14:07:21 +01:00
|
|
|
|
|
|
|
struc http_msg {
|
|
|
|
.socket dd ?
|
|
|
|
.flags dd ?
|
|
|
|
.write_ptr dd ?
|
|
|
|
.buffer_length dd ?
|
|
|
|
.chunk_ptr dd ?
|
2013-11-11 13:29:54 +01:00
|
|
|
.timestamp dd ?
|
2013-11-04 14:07:21 +01:00
|
|
|
.status dd ?
|
|
|
|
.header_length dd ?
|
|
|
|
.content_length dd ?
|
2013-11-05 18:02:59 +01:00
|
|
|
.content_received dd ?
|
2013-11-04 14:07:21 +01:00
|
|
|
.data:
|
|
|
|
}
|