miniupnpd: PCP Add support for ANNOUNCE requests
This commit is contained in:
parent
46905418ca
commit
538c002373
|
@ -1,4 +1,7 @@
|
|||
$Id: Changelog.txt,v 1.346 2013/12/13 13:41:52 nanard Exp $
|
||||
$Id: Changelog.txt,v 1.348 2014/02/03 09:32:09 nanard Exp $
|
||||
|
||||
2014/02/03:
|
||||
PCP : Add support for ANNOUNCE requests
|
||||
|
||||
2013/12/16:
|
||||
Attempt to compile with OS X/pf
|
||||
|
|
|
@ -1086,6 +1086,10 @@ static int processPCPRequest(void * req, int req_size, pcp_info_t *pcp_msg_info)
|
|||
/* RFC 6887 PCP support
|
||||
* http://tools.ietf.org/html/rfc6887 */
|
||||
switch ( common_req->r_opcode & 0x7F) {
|
||||
case PCP_OPCODE_ANNOUNCE:
|
||||
/* should check PCP Client's IP Address in request */
|
||||
/* see http://tools.ietf.org/html/rfc6887#section-14.1 */
|
||||
break;
|
||||
case PCP_OPCODE_MAP:
|
||||
|
||||
remainingSize -= sizeof(pcp_map_v2_t);
|
||||
|
|
Loading…
Reference in New Issue