1. 19 7月, 2012 25 次提交
  2. 18 7月, 2012 10 次提交
  3. 17 7月, 2012 4 次提交
    • J
      xenapi: Convert to virMacAddr · c7d5cdb1
      Jiri Denemark 提交于
      c7d5cdb1
    • M
      nwfilter: Convert to virMacAddrPtr not virMacAddrPtr* · 9d193889
      Michal Privoznik 提交于
      My previous patch wasn't complete as it converted from
      (unsigned char *) to (virMacAddrPtr *). It should be
      (virMacAddrPtr) only.
      9d193889
    • M
      nwfilter: Convert to virMacAddrPtr completely · 14197c74
      Michal Privoznik 提交于
      The previous commit (387117ad) was incomplete leaving those
      who does not use libpcap with uncompilable sources beacuse
      of incomplete conversion of virNWFilterDHCPSnoopReq function.
      14197c74
    • S
      Convert 'raw MAC address' usages to use virMacAddr · 387117ad
      Stefan Berger 提交于
      Introduce new members in the virMacAddr 'class'
      - virMacAddrSet: set virMacAddr from a virMacAddr
      - virMacAddrSetRaw: setting virMacAddr from raw 6 byte MAC address buffer
      - virMacAddrGetRaw: writing virMacAddr into raw 6 byte MAC address buffer
      - virMacAddrCmp: comparing two virMacAddr
      - virMacAddrCmpRaw: comparing a virMacAddr with a raw 6 byte MAC address buffer
      
      then replace raw MAC addresses by replacing
      
      - 'unsigned char *' with virMacAddrPtr
      - 'unsigned char ... [VIR_MAC_BUFLEN]' with virMacAddr
      
      and introduce usage of above functions where necessary.
      387117ad
  4. 16 7月, 2012 1 次提交