~mterry/url-dispatcher/snap-support

« back to all changes in this revision

Viewing changes to service/scope-checker.h

  • Committer: Michael Terry
  • Date: 2016-11-08 22:14:54 UTC
  • mfrom: (93.1.2 url-dispatcher)
  • Revision ID: michael.terry@canonical.com-20161108221454-e777vqecva4helrm
Merge from trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * Copyright © 2016 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it under
 
5
 * the terms of the GNU Lesser General Public License version 3, as published by
 
6
 * the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but WITHOUT
 
9
 * ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
 
10
 * SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
11
 * Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 */
 
17
 
 
18
#pragma once
 
19
 
 
20
#include <sys/types.h>
 
21
#include <stdbool.h>
 
22
 
 
23
typedef struct _ScopeChecker ScopeChecker;
 
24
 
 
25
ScopeChecker * scope_checker_new ();
 
26
void scope_checker_delete (ScopeChecker * checker);
 
27
bool scope_checker_is_scope (ScopeChecker * checker, const char * appid);
 
28
bool scope_checker_is_scope_pid (ScopeChecker * checker, pid_t pid);
 
29