From 57e22bb49145d0c4da64b8ff76540b286c55a448 Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Fri, 24 Jun 2011 13:50:59 -0400 Subject: 'noXsrfProtection' .urp directive --- src/settings.sml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/settings.sml') diff --git a/src/settings.sml b/src/settings.sml index 69d67959..26aaad95 100644 --- a/src/settings.sml +++ b/src/settings.sml @@ -1,4 +1,4 @@ -(* Copyright (c) 2008-2010, Adam Chlipala +(* Copyright (c) 2008-2011, Adam Chlipala * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -570,4 +570,8 @@ val alwaysInline = ref SS.empty fun addAlwaysInline s = alwaysInline := SS.add (!alwaysInline, s) fun checkAlwaysInline s = SS.member (!alwaysInline, s) +val noXsrfProtection = ref SS.empty +fun addNoXsrfProtection s = noXsrfProtection := SS.add (!noXsrfProtection, s) +fun checkNoXsrfProtection s = SS.member (!noXsrfProtection, s) + end -- cgit v1.2.3