Skip to content

Commit

Permalink
fix: define all enum values
Browse files Browse the repository at this point in the history
  • Loading branch information
jean-roland committed Nov 16, 2023
1 parent b680332 commit d73b3d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/zenoh-pico/link/link.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@
*/
typedef enum {
Z_LINK_CAP_UNICAST_STREAM = 0,
Z_LINK_CAP_UNICAST_DATAGRAM,
Z_LINK_CAP_MULTICAST_STREAM,
Z_LINK_CAP_MULTICAST_DATAGRAM,
Z_LINK_CAP_UNICAST_DATAGRAM = 1,
Z_LINK_CAP_MULTICAST_STREAM = 2,
Z_LINK_CAP_MULTICAST_DATAGRAM = 3,
} _z_link_capabilities_t;

struct _z_link_t; // Forward declaration to be used in _z_f_link_*
Expand Down

0 comments on commit d73b3d1

Please sign in to comment.