VirtualBox

Changeset 40122 in vbox for trunk/src


Ignore:
Timestamp:
Feb 14, 2012 8:46:23 AM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
76266
Message:

NAT: dhcp: removes p_end, p is too unmeaning variable name, especially that it re-assigned three times in method body.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Network/slirp/bootp.c

    r40118 r40122  
    677677static void dhcp_decode(PNATState pData, struct bootp_t *bp, const uint8_t *buf, int size)
    678678{
    679     const uint8_t *p, *p_end;
     679    const uint8_t *pu8RawDhcpObject;
    680680    int rc;
    681681    struct in_addr req_ip;
     
    684684    struct mbuf *m = NULL;
    685685
    686     p = buf;
    687     p_end = buf + size;
     686    pu8RawDhcpObject = buf;
    688687    if (size < 5)
    689688        return;
    690689
    691     if (memcmp(p, rfc1533_cookie, 4) != 0)
     690    if (memcmp(pu8RawDhcpObject, rfc1533_cookie, 4) != 0)
    692691        return;
    693692
    694     p = dhcp_find_option(bp->bp_vend, RFC2132_MSG_TYPE);
    695     Assert(p);
    696     if (!p)
     693    /* note: pu8RawDhcpObject doesn't point to parameter buf */
     694    pu8RawDhcpObject = dhcp_find_option(bp->bp_vend, RFC2132_MSG_TYPE);
     695    Assert(pu8RawDhcpObject);
     696    if (!pu8RawDhcpObject)
    697697        return;
    698698    /*
     
    725725    }
    726726
    727     switch (*(p+2))
     727    switch (*(pu8RawDhcpObject + 2))
    728728    {
    729729        case DHCPDISCOVER:
     
    748748
    749749        case DHCPDECLINE:
    750             p = dhcp_find_option(&bp->bp_vend[0], RFC2132_REQ_ADDR);
    751             if (!p)
     750            /* note: pu8RawDhcpObject doesn't point to DHCP header, now it's expected it points
     751             * to Dhcp Option RFC2132_REQ_ADDR
     752             */
     753            pu8RawDhcpObject = dhcp_find_option(&bp->bp_vend[0], RFC2132_REQ_ADDR);
     754            if (!pu8RawDhcpObject)
    752755            {
    753756                Log(("NAT: RFC2132_REQ_ADDR not found\n"));
    754757                break;
    755758            }
    756             req_ip.s_addr = *(uint32_t *)(p + 2);
     759            req_ip.s_addr = *(uint32_t *)(pu8RawDhcpObject + 2);
    757760            rc = bootp_cache_lookup_ether_by_ip(pData, req_ip.s_addr, NULL);
    758761            if (RT_FAILURE(rc))
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette