Skip to content
Snippets Groups Projects
Select Git revision
  • mpc
  • main default protected
  • rosification
  • refactoring
  • pp
  • realtimelogplotter
  • alv
  • gitlab_ci_podman
  • restructuring
  • viz_fix
10 results

Dockerfile

Blame
  • ethaddr.h 305 B
    #ifndef ETHADDR_H
    #define ETHADDR_H
    
    #include <net/ethernet.h>
    
    /* parse a string on the format 00:01:02:0d:0e:0f into a char array
     * the mac_addr argument must be at least six bytes.
     * returns 0 on success, or -1 on error
     */
    int parse_MAC_address(const char *str, struct ether_addr *mac_addr);
    #endif