I ended up resolving my own issue with a little help from the irc channel.<br><br>In case anyone else is looking for a duck tape solution...<br><br>I created my own cookie (auth_user) that executes in the login.php under the "start do login" post request<br>
<br>$value = 'access';<br>setcookie("auth_user", $value);<br>setcookie("auth_user", $value, time()+86400);  <br>setcookie("auth_user", $value, time()+86400, "/", ".<a href="http://mysite.com">mysite.com</a>", 1);<br>
<br>and then in default.vcl:<br><br>sub vcl_recv {<br>if (req.http.cookie && req.http.cookie ~ "auth_user") {<br>    pass;<br>   }<br>}<br><br>sub vcl_hash {<br>if (req.http.cookie && req.http.cookie ~ "auth_user") { set req.hash += "auth"; }<br>
    set req.hash += req.url;<br>   <br> hash;<br>}<br><br><br><br><br><br>