~jan-kneschke/mysql-proxy/packet-tracking-assertions

« back to all changes in this revision

Viewing changes to lib/auditing.lua

  • Committer: Kay Roepke
  • Date: 2009-06-03 12:51:29 UTC
  • mto: This revision was merged to the branch mainline in revision 639.
  • Revision ID: kay@sun.com-20090603125129-26oso9ov7yinwocg
add autoconf/aclocal files we should never commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
--[[ $%BEGINLICENSE%$
2
 
 Copyright (c) 2007, 2009, Oracle and/or its affiliates. All rights reserved.
 
2
 Copyright (C) 2007-2008 MySQL AB, 2008 Sun Microsystems, Inc
3
3
 
4
 
 This program is free software; you can redistribute it and/or
5
 
 modify it under the terms of the GNU General Public License as
6
 
 published by the Free Software Foundation; version 2 of the
7
 
 License.
 
4
 This program is free software; you can redistribute it and/or modify
 
5
 it under the terms of the GNU General Public License as published by
 
6
 the Free Software Foundation; version 2 of the License.
8
7
 
9
8
 This program is distributed in the hope that it will be useful,
10
9
 but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
10
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
11
 GNU General Public License for more details.
13
12
 
14
13
 You should have received a copy of the GNU General Public License
15
14
 along with this program; if not, write to the Free Software
16
 
 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
17
 
 02110-1301  USA
 
15
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
16
 
19
17
 $%ENDLICENSE%$ --]]
20
18
 
21
19
local user = ""
22
20
 
23
 
function read_handshake( )
24
 
        local con = proxy.connection
25
 
 
 
21
function read_handshake( auth )
26
22
        print("<-- let's send him some information about us")
27
 
        print("    server-addr   : " .. con.server.dst.name)
28
 
        print("    client-addr   : " .. con.client.src.name)
 
23
        print("    server-addr   : " .. auth.server_addr)
 
24
        print("    client-addr   : " .. auth.client_addr)
29
25
end
30
26
 
31
 
function read_auth( )
32
 
        local con = proxy.connection
33
 
 
 
27
function read_auth( auth )
34
28
        print("--> there, look, the client is responding to the server auth packet")
35
 
        print("    username      : " .. con.client.username)
 
29
        print("    username      : " .. auth.username)
36
30
 
37
 
        user = con.client.username
 
31
        user = auth.username
38
32
end
39
33
 
40
34
function read_auth_result( auth )