comparison lisp/net/tls.el @ 85932:4800f9022c93

Fix last commit.
author Simon Josefsson <jas@extundo.com>
date Mon, 05 Nov 2007 15:04:15 +0000
parents ca8fdbbd44ed
children 905499f8c560
comparison
equal deleted inserted replaced
85931:1c3b6d4d6bfd 85932:4800f9022c93
63 ;; line that is printed by s_client before the real data. 63 ;; line that is printed by s_client before the real data.
64 "^ Verify return code: .+\n---\n\\|" 64 "^ Verify return code: .+\n---\n\\|"
65 ;; `gnutls' regexp. See src/cli.c lines 721-. 65 ;; `gnutls' regexp. See src/cli.c lines 721-.
66 "^- Simple Client Mode:\n" 66 "^- Simple Client Mode:\n"
67 "\\(\n\\|" ; ignore blank lines 67 "\\(\n\\|" ; ignore blank lines
68 ;; According to src/cli.c lines 640-650 and 705-715 the handshake 68 ;; According to src/cli.c (in v2.1.5) lines 640-650 and 705-715 the
69 ;; will start after this message. If the handshake fails, the 69 ;; handshake will start after this message. If the handshake
70 ;; programs will abort. 70 ;; fails, the programs will abort.
71 "^\\*\\*\\* Starting TLS handshake\n\\)*" 71 "^\\*\\*\\* Starting TLS handshake\n\\)*"
72 "\\)") 72 "\\)")
73 "Regexp matching end of TLS client informational messages. 73 "Regexp matching end of TLS client informational messages.
74 Client data stream begins after the last character matched by 74 Client data stream begins after the last character matched by
75 this. The default matches `openssl s_client' (version 0.9.8c) 75 this. The default matches `openssl s_client' (version 0.9.8c)