Qore Programming Language  0.8.9
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
QoreEvents.h
1 /* -*- mode: c++; indent-tabs-mode: nil -*- */
2 /*
3  QoreSocket.h
4 
5  Qore Programming Language
6 
7  Copyright 2003 - 2013 David Nichols
8 
9  This library is free software; you can redistribute it and/or
10  modify it under the terms of the GNU Lesser General Public
11  License as published by the Free Software Foundation; either
12  version 2.1 of the License, or (at your option) any later version.
13 
14  This library is distributed in the hope that it will be useful,
15  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  Lesser General Public License for more details.
18 
19  You should have received a copy of the GNU Lesser General Public
20  License along with this library; if not, write to the Free Software
21  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23 
24 #ifndef _QORE_QOREEVENTS_H
25 
26 #define _QORE_QOREEVENTS_H
27 
29 #define QORE_SOURCE_SOCKET 1
30 #define QORE_SOURCE_HTTPCLIENT 2
32 #define QORE_SOURCE_FTPCLIENT 3
34 #define QORE_SOURCE_FILE 4
36 
38 #define QORE_EVENT_PACKET_READ 1
39 #define QORE_EVENT_PACKET_SENT 2
41 #define QORE_EVENT_HTTP_CONTENT_LENGTH 3
43 #define QORE_EVENT_HTTP_CHUNKED_START 4
45 #define QORE_EVENT_HTTP_CHUNKED_END 5
47 #define QORE_EVENT_HTTP_REDIRECT 6
49 #define QORE_EVENT_CHANNEL_CLOSED 7
51 #define QORE_EVENT_DELETED 8
53 #define QORE_EVENT_FTP_SEND_MESSAGE 9
55 #define QORE_EVENT_FTP_MESSAGE_RECEIVED 10
57 #define QORE_EVENT_HOSTNAME_LOOKUP 11
59 #define QORE_EVENT_HOSTNAME_RESOLVED 12
61 #define QORE_EVENT_HTTP_SEND_MESSAGE 13
63 #define QORE_EVENT_HTTP_MESSAGE_RECEIVED 14
65 #define QORE_EVENT_HTTP_FOOTERS_RECEIVED 15
67 #define QORE_EVENT_HTTP_CHUNKED_DATA_RECEIVED 16
69 #define QORE_EVENT_HTTP_CHUNK_SIZE 17
71 #define QORE_EVENT_CONNECTING 18
73 #define QORE_EVENT_CONNECTED 19
75 #define QORE_EVENT_START_SSL 20
77 #define QORE_EVENT_SSL_ESTABLISHED 21
79 #define QORE_EVENT_OPEN_FILE 22
81 #define QORE_EVENT_FILE_OPENED 23
83 #define QORE_EVENT_DATA_READ 24
85 #define QORE_EVENT_DATA_WRITTEN 25
87 
88 #endif