/src/resiprocate/resip/stack/NonceHelper.cxx
Line | Count | Source |
1 | | |
2 | | #include "resip/stack/NonceHelper.hxx" |
3 | | |
4 | | using namespace resip; |
5 | | |
6 | 0 | NonceHelper::Nonce::Nonce(uint64_t creationTime) : creationTime(creationTime) |
7 | 0 | { |
8 | 0 | } |
9 | | |
10 | | NonceHelper::Nonce::~Nonce() |
11 | 0 | { |
12 | 0 | } |
13 | | |
14 | | NonceHelper::~NonceHelper() |
15 | 0 | { |
16 | 0 | } |
17 | | |
18 | | /* ==================================================================== |
19 | | * |
20 | | * Copyright 2012 Daniel Pocock. All rights reserved. |
21 | | * |
22 | | * Redistribution and use in source and binary forms, with or without |
23 | | * modification, are permitted provided that the following conditions |
24 | | * are met: |
25 | | * |
26 | | * 1. Redistributions of source code must retain the above copyright |
27 | | * notice, this list of conditions and the following disclaimer. |
28 | | * |
29 | | * 2. Redistributions in binary form must reproduce the above copyright |
30 | | * notice, this list of conditions and the following disclaimer in |
31 | | * the documentation and/or other materials provided with the |
32 | | * distribution. |
33 | | * |
34 | | * 3. Neither the name of the author(s) nor the names of any contributors |
35 | | * may be used to endorse or promote products derived from this software |
36 | | * without specific prior written permission. |
37 | | * |
38 | | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) AND CONTRIBUTORS "AS IS" AND |
39 | | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
40 | | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
41 | | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR(S) OR CONTRIBUTORS BE LIABLE |
42 | | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
43 | | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
44 | | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
45 | | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
46 | | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
47 | | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
48 | | * SUCH DAMAGE. |
49 | | * |
50 | | * ==================================================================== |
51 | | * |
52 | | * |
53 | | */ |
54 | | |