Commit 91954060 authored by Youness Alaoui's avatar Youness Alaoui

removing inline from stun_setw and stun_set_type

parent 7113eb82
...@@ -50,7 +50,7 @@ ...@@ -50,7 +50,7 @@
#include <netinet/in.h> #include <netinet/in.h>
static inline static
void *stun_setw (uint8_t *ptr, uint16_t value) void *stun_setw (uint8_t *ptr, uint16_t value)
{ {
*ptr++ = value >> 8; *ptr++ = value >> 8;
...@@ -59,7 +59,7 @@ void *stun_setw (uint8_t *ptr, uint16_t value) ...@@ -59,7 +59,7 @@ void *stun_setw (uint8_t *ptr, uint16_t value)
} }
static inline static
void stun_set_type (uint8_t *h, stun_class_t c, stun_method_t m) void stun_set_type (uint8_t *h, stun_class_t c, stun_method_t m)
{ {
assert (c < 4); assert (c < 4);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment