~hipl-s2e-devs/hipl/s2e-integration

« back to all changes in this revision

Viewing changes to modules/midauth/module_info.xml

  • Committer: Rene Hummen
  • Date: 2011-08-09 15:25:25 UTC
  • mfrom: (6045.1.50 midauth-hipd)
  • Revision ID: rene.hummen@cs.rwth-aachen.de-20110809152525-xmvqjzu8r3iug3go
merge re-implements the hipd-related part of draft-heer-hip-middle-auth-02

An extensive merge proposal and discussion can be found at:
https://code.launchpad.net/~rene-hummen/hipl/midauth-hipd/+merge/70736

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!--
 
2
Copyright (c) 2010-2011 Aalto University and RWTH Aachen University.
 
3
 
 
4
Permission is hereby granted, free of charge, to any person
 
5
obtaining a copy of this software and associated documentation
 
6
files (the "Software"), to deal in the Software without
 
7
restriction, including without limitation the rights to use,
 
8
copy, modify, merge, publish, distribute, sublicense, and/or sell
 
9
copies of the Software, and to permit persons to whom the
 
10
Software is furnished to do so, subject to the following
 
11
conditions:
 
12
 
 
13
The above copyright notice and this permission notice shall be
 
14
included in all copies or substantial portions of the Software.
 
15
 
 
16
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
17
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 
18
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
19
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 
20
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 
21
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 
22
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 
23
OTHER DEALINGS IN THE SOFTWARE.
 
24
-->
 
25
 
 
26
<?xml version="1.0" encoding="UTF-8"?>
 
27
 
 
28
<!-- Mandatory: name, version -->
 
29
<module
 
30
    name="midauth"
 
31
    version="0.0.1"
 
32
    description="Middlebox authentication functionality for the hip daemon."
 
33
    developer=""
 
34
    bugaddress="hipl-users@freelists.org"
 
35
    webpage="http://infrahip.hiit.fi/">
 
36
 
 
37
    <requires>
 
38
        <module name="update" minversion="0.0.1" />
 
39
    </requires>
 
40
 
 
41
    <!-- Mandatory: name, header_file, init_function -->
 
42
    <application
 
43
        name="hipd"
 
44
        header_file="modules/midauth/hipd/midauth.h"
 
45
        init_function="hip_midauth_init" />
 
46
</module>
 
47