Adds control message for HSTS headers

This commit is contained in:
Sam Gibson 2015-06-24 11:30:08 -07:00
parent f284181781
commit 795454fb81
2 changed files with 9 additions and 0 deletions

View file

@ -126,6 +126,8 @@ pub enum ControlMsg {
SetCookiesForUrl(Url, String, CookieSource),
/// Retrieve the stored cookies for a given URL
GetCookiesForUrl(Url, Sender<Option<String>>, CookieSource),
/// Store a domain's STS information
SetHSTSEntryForHost(String, bool, Option<u64>),
Exit
}