Commit 2b861e11 authored by Youness Alaoui's avatar Youness Alaoui

No need to have those as const.. as it forces the user to fill the structure at creation

parent 377340e5
......@@ -102,10 +102,10 @@ struct stun_agent_t {
};
typedef struct {
const uint8_t *username;
const size_t username_len;
const uint8_t *password;
const size_t password_len;
uint8_t *username;
size_t username_len;
uint8_t *password;
size_t password_len;
} stun_validater_data;
......
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