comparison libpurple/nat-pmp.h @ 15822:32c366eeeb99

sed -ie 's/gaim/purple/g'
author Sean Egan <seanegan@gmail.com>
date Mon, 19 Mar 2007 07:01:17 +0000
parents 552be3958d6a
children 9b875f0ecb86
comparison
equal deleted inserted replaced
15821:84b0f9b23ede 15822:32c366eeeb99
1 /** 1 /**
2 * @file nat-pmp.h NAT-PMP Implementation 2 * @file nat-pmp.h NAT-PMP Implementation
3 * @ingroup core 3 * @ingroup core
4 * 4 *
5 * gaim 5 * purple
6 * 6 *
7 * Gaim is the legal property of its developers, whose names are too numerous 7 * Purple is the legal property of its developers, whose names are too numerous
8 * to list here. Please refer to the COPYRIGHT file distributed with this 8 * to list here. Please refer to the COPYRIGHT file distributed with this
9 * source distribution. 9 * source distribution.
10 * 10 *
11 * Most code in nat-pmp.h copyright (C) 2007, R. Tyler Ballance, bleep, LLC. 11 * Most code in nat-pmp.h copyright (C) 2007, R. Tyler Ballance, bleep, LLC.
12 * This file is distributed under the 3-clause (modified) BSD license: 12 * This file is distributed under the 3-clause (modified) BSD license:
85 uint16_t privateport; 85 uint16_t privateport;
86 uint16_t publicport; 86 uint16_t publicport;
87 uint32_t lifetime; 87 uint32_t lifetime;
88 } pmp_map_response_t; 88 } pmp_map_response_t;
89 89
90 char *gaim_pmp_get_public_ip(); 90 char *purple_pmp_get_public_ip();
91 pmp_map_response_t *gaim_pmp_create_map(uint8_t type, uint16_t privateport, uint16_t publicport, uint32_t lifetime); 91 pmp_map_response_t *purple_pmp_create_map(uint8_t type, uint16_t privateport, uint16_t publicport, uint32_t lifetime);
92 pmp_map_response_t *gaim_pmp_destroy_map(uint8_t type, uint16_t privateport); 92 pmp_map_response_t *purple_pmp_destroy_map(uint8_t type, uint16_t privateport);
93 93
94 #endif 94 #endif