diff options
author | Simo Sorce <simo@redhat.com> | 2015-11-27 17:28:23 -0500 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2015-12-02 18:34:39 -0500 |
commit | 472d605d916f7ad63cd8bbffa100997eca700da4 (patch) | |
tree | ea2a518b004b64beb8ea3a3cc971af1ae91d02c4 /src/environ.h | |
parent | 855341bf3b39fe5e5b9abf299563e0d09c4861a3 (diff) | |
download | mod_auth_gssapi-472d605d916f7ad63cd8bbffa100997eca700da4.tar.gz mod_auth_gssapi-472d605d916f7ad63cd8bbffa100997eca700da4.tar.xz mod_auth_gssapi-472d605d916f7ad63cd8bbffa100997eca700da4.zip |
Move setting request data to a separate file
In preparation for the next commit.
Signed-off-by: Simo Sorce <simo@redhat.com>
Diffstat (limited to 'src/environ.h')
-rw-r--r-- | src/environ.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/environ.h b/src/environ.h new file mode 100644 index 0000000..e20ed64 --- /dev/null +++ b/src/environ.h @@ -0,0 +1,8 @@ +/* Copyright (C) 2015 mod_auth_gssapi authors - See COPYING for (C) terms */ + +struct mag_config; +struct mag_conn; + +void mag_set_req_data(request_rec *req, + struct mag_config *cfg, + struct mag_conn *mc); |