summaryrefslogtreecommitdiff
path: root/memc-nginx-module-0.20/src/memc_stats.rl
blob: 9526b77547adb2663a89944ba793a70967c2ac0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
%%{
    machine memc_stats;

    alphtype short;

    include memc_common "memc_common.rl";

    content = any+ - "\r\n"
            ;

    stat_line = "STAT " content "\r\n"
              ;

    response = stat_line* "END\r\n"
             | error
             ;

    main := response @finalize
         ;

}%%