Displaying 4 results from an estimated 4 matches for "allow_remot".
Did you mean:
allow_remote
2007 Oct 18
0
18 commits - doc/swfdec-sections.txt libswfdec/Makefile.am libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_strings.c libswfdec/swfdec_button_movie.c libswfdec/swfdec_event.c libswfdec/swfdec_event.h libswfdec/swfdec_flash_security.c
...wfdec_url_get_host (key)) == 0;
+}
+
+static gboolean
swfdec_flash_security_allow_url (SwfdecSecurity *guard, const SwfdecURL *url)
{
SwfdecFlashSecurity *sec = SWFDEC_FLASH_SECURITY (guard);
- if (swfdec_url_is_local (url)) {
- return sec->allow_local;
- } else {
- return sec->allow_remote;
+ switch (sec->sandbox) {
+ case SWFDEC_SANDBOX_NONE:
+ return FALSE;
+ case SWFDEC_SANDBOX_REMOTE:
+ if (swfdec_url_is_local (url))
+ return FALSE;
+ return swfdec_flash_security_match_domain (sec->url, url);
+ case SWFDEC_SANDBOX_LOCAL_FILE:
+ return swfdec_u...
2015 Apr 13
2
[Bug 2378] New: Allow login to a role using Hostbased auth on platforms supporting PAM_AUSER
...les are allowed by PAM configuration, OpenSSH should
allow
login to a role for hostbased authentication.
E.g.
- if local user testuser has been assigned role testrole
- and hostbased authentication has been configured for remote host
- and local PAM account stack lists pam_roles module with option
allow_remote
- then remote user testuser should be allowed to directly login to
testrole
--
You are receiving this mail because:
You are watching the assignee of the bug.
2007 Oct 17
0
28 commits - configure.ac debian/changelog debian/control debian/copyright debian/.gitignore debian/libswfdec0.dirs debian/libswfdec0.files debian/libswfdec0.shlibs debian/libswfdec-dev.dirs debian/libswfdec-dev.files debian/rules debian/swf-player.dirs
...work access for %s\n",
+ swfdec_url_get_url (swfdec_loader_get_url (player->loader)));
+ SWFDEC_INFO ("enabling network access for %s",
+ swfdec_url_get_url (swfdec_loader_get_url (player->loader)));
+
+ sec = SWFDEC_FLASH_SECURITY (player->security);
+ sec->allow_remote = TRUE;
+ sec->allow_local = FALSE;
+}
+
+static void
swfdec_swf_instance_loader_target_image (SwfdecSwfInstance *instance)
{
SwfdecSpriteMovie *movie = instance->movie;
@@ -60,9 +76,15 @@ swfdec_swf_instance_loader_target_image (SwfdecSwfInstance *instance)
return;
if (SWFDE...