summaryrefslogtreecommitdiffstats
path: root/package.xml
blob: e5d7a8ce199436baaa6b4aabf4540938f3163df1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<package>
    <name>OsmoSIP</name>
    <namespace>Osmo</namespace>
    <prereq>OsmoLogging</prereq>
    <prereq>OsmoCore</prereq>
    <prereq>OsmoNetwork</prereq>
    <prereq>Sockets</prereq>
    <prereq>PetitParser</prereq>
    <prereq>Digest</prereq>

    <filein>grammar/SIPQuotedStringParser.st</filein>
    <filein>grammar/SIPGrammar.st</filein>

    <filein>callagent/Base64MimeConverter.st</filein>
    <filein>callagent/Extensions.st</filein>
    <filein>callagent/SIPLogArea.st</filein>
    <filein>callagent/SIPDialog.st</filein>

    <filein>callagent/misc/SIPBase64.st</filein>
    <filein>callagent/misc/SIPRandomHelper.st</filein>
    <filein>callagent/misc/SIPURandom.st</filein>

    <filein>callagent/parameters/Extensions.st</filein>
    <filein>callagent/parameters/SIPParam.st</filein>
    <filein>callagent/parameters/SIPGenericParam.st</filein>
    <filein>callagent/parameters/SIPCSeq.st</filein>
    <filein>callagent/parameters/SIPToFromParam.st</filein>
    <filein>callagent/parameters/SIPVia.st</filein>

    <filein>callagent/requests/SIPRequest.st</filein>
    <filein>callagent/requests/SIPACKRequest.st</filein>
    <filein>callagent/requests/SIPByeRequest.st</filein>
    <filein>callagent/requests/SIPCancelRequest.st</filein>
    <filein>callagent/requests/SIPInviteRequest.st</filein>
    <filein>callagent/requests/SIPOptionsRequest.st</filein>
    <filein>callagent/requests/SIPRegisterRequest.st</filein>

    <filein>callagent/parser/Extensions.st</filein>
    <filein>callagent/parser/SIPParser.st</filein>

    <filein>callagent/SIPResponse.st</filein>
    <filein>callagent/SIPIdentity.st</filein>

    <filein>callagent/transactions/SIPTransaction.st</filein>
    <filein>callagent/transactions/SIPByeTransaction.st</filein>
    <filein>callagent/transactions/SIPInviteTransaction.st</filein>
    <filein>callagent/transactions/SIPRegisterTransaction.st</filein>

    <filein>callagent/useragent/Extensions.st</filein>
    <filein>callagent/useragent/SIPUserAgentBase.st</filein>
    <filein>callagent/useragent/SIPUserAgent.st</filein>

    <filein>callagent/session/Extensions.st</filein>
    <filein>callagent/session/SIPSessionBase.st</filein>
    <filein>callagent/session/SIPCallBase.st</filein>
    <filein>callagent/session/SIPCall.st</filein>
    <filein>callagent/session/SIPIncomingCall.st</filein>

    <filein>callagent/transport/SIPTransport.st</filein>
    <filein>callagent/transport/SIPUdpTransport.st</filein>
    <filein>callagent/authorization/SIPDigest.st</filein>
    <filein>callagent/authorization/SIPAuthorization.st</filein>
    <filein>callagent/authorization/SIPProxyAuthorization.st</filein>

    <test>
        <prereq>PetitParserTests</prereq>
        <sunit>Osmo.SIPQuotedStringParserTest</sunit>
        <sunit>Osmo.SIPGrammarTest</sunit>
        <sunit>Osmo.SIPParserTest</sunit>
        <sunit>Osmo.SIPRequestTest</sunit>
        <sunit>Osmo.SIPUdpTransportTest</sunit>
        <sunit>Osmo.SIPCallAgentTest</sunit>
        <sunit>Osmo.SIPDigestTest</sunit>
        <sunit>Osmo.SIPRegisterTransactionTest</sunit>
        <sunit>Osmo.SIPInviteTest</sunit>
        <sunit>Osmo.SIPBase64Test</sunit>
        <filein>grammar/SIPGrammarTest.st</filein>
        <filein>grammar/SIPQuotedStringParserTest.st</filein>
        <filein>callagent/tests/SIPParserTest.st</filein>
        <filein>callagent/tests/Tests.st</filein>
        <filein>callagent/tests/SIPCallAgentTest.st</filein>
        <filein>callagent/tests/SIPDigestTest.st</filein>
        <filein>callagent/tests/SIPTransportMock.st</filein>
        <filein>callagent/tests/SIPRegisterTransactionTest.st</filein>
        <filein>callagent/tests/SIPInviteTest.st</filein>
        <filein>callagent/tests/SIPBase64Test.st</filein>
    </test>
</package>