annotate src/os/win32/nginx_icon48.xpm @ 8456:c72d8839f427

Mail: fixed SMTP pipelining to send the response immediately. Previously, if there were some pipelined SMTP data in the buffer when a proxied connection with the backend was established, nginx called ngx_mail_proxy_handler() to send these data, and not tried to send the response to the last command. In most cases, this response was later sent along with the response to the pipelined command, but if for some reason client decides to wait for the response before finishing the next command this might result in a connection hang. Fix is to always call ngx_mail_proxy_handler() to send the response, and additionally post an event to send the pipelined data if needed.
author Maxim Dounin <mdounin@mdounin.ru>
date Wed, 19 May 2021 03:13:12 +0300
parents 37580bd13ca5
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2734
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
1 /* XPM */
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
2 static char * nginx_xpm[] = {
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
3 "48 48 2 2",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
4 /* colors */
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
5 " c none",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
6 "GG c #009900",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
7 /* pixels */
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
8 " ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
9 " ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
10 " ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
11 " ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
12 " ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
13 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
14 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
15 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
16 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
17 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
18 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
19 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
20 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
21 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
22 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
23 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
24 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
25 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
26 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
27 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
28 " GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
29 " GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
30 " GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
31 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
32 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
33 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
34 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
35 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
36 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
37 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
38 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
39 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
40 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
41 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
42 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
43 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
44 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
45 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
46 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
47 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
48 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
49 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
50 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
51 " ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
52 " ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
53 " ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
54 " ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
55 " ",