Qore Programming Language
0.8.7
Main Page
Related Pages
Modules
Classes
Files
File List
File Members
All
Classes
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Groups
Pages
include
qore
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
31
#define QORE_SOURCE_HTTPCLIENT 2
32
33
#define QORE_SOURCE_FTPCLIENT 3
34
35
#define QORE_SOURCE_FILE 4
36
38
#define QORE_EVENT_PACKET_READ 1
39
40
#define QORE_EVENT_PACKET_SENT 2
41
42
#define QORE_EVENT_HTTP_CONTENT_LENGTH 3
43
44
#define QORE_EVENT_HTTP_CHUNKED_START 4
45
46
#define QORE_EVENT_HTTP_CHUNKED_END 5
47
48
#define QORE_EVENT_HTTP_REDIRECT 6
49
50
#define QORE_EVENT_CHANNEL_CLOSED 7
51
52
#define QORE_EVENT_DELETED 8
53
54
#define QORE_EVENT_FTP_SEND_MESSAGE 9
55
56
#define QORE_EVENT_FTP_MESSAGE_RECEIVED 10
57
58
#define QORE_EVENT_HOSTNAME_LOOKUP 11
59
60
#define QORE_EVENT_HOSTNAME_RESOLVED 12
61
62
#define QORE_EVENT_HTTP_SEND_MESSAGE 13
63
64
#define QORE_EVENT_HTTP_MESSAGE_RECEIVED 14
65
66
#define QORE_EVENT_HTTP_FOOTERS_RECEIVED 15
67
68
#define QORE_EVENT_HTTP_CHUNKED_DATA_RECEIVED 16
69
70
#define QORE_EVENT_HTTP_CHUNK_SIZE 17
71
72
#define QORE_EVENT_CONNECTING 18
73
74
#define QORE_EVENT_CONNECTED 19
75
76
#define QORE_EVENT_START_SSL 20
77
78
#define QORE_EVENT_SSL_ESTABLISHED 21
79
80
#define QORE_EVENT_OPEN_FILE 22
81
82
#define QORE_EVENT_FILE_OPENED 23
83
84
#define QORE_EVENT_DATA_READ 24
85
86
#define QORE_EVENT_DATA_WRITTEN 25
87
88
#endif