Skip to content
Snippets Groups Projects
Commit 56d6ae97 authored by Emmanuel Milou's avatar Emmanuel Milou
Browse files

Fix implicit declaration in reqaccount

parent 4103655d
No related branches found
No related tags found
No related merge requests found
......@@ -65,6 +65,8 @@ struct _wizard
GtkWidget *summary;
/** Page 6 - Registration failed*/
GtkWidget *reg_failed;
GtkWidget *sflphone_org;
};
......@@ -98,6 +100,7 @@ GtkWidget* build_nat_settings( void );
GtkWidget* build_iax_account_configuration( void );
GtkWidget* build_summary( void );
GtkWidget* build_registration_error( void );
GtkWidget* build_sfl_or_account (void);
/**
* Forward function
......
......@@ -32,9 +32,14 @@
#include <netdb.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <stdlib.h>
#include "reqaccount.h"
int req(char *host, int port, char *req, char *ret) {
int s;
struct sockaddr_in servSockAddr;
struct hostent *servHostEnt;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment