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