Should help with compiling network related apps.

I'm not sure if we really need this socket.h and netdb.h wrappers


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1599 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
beveloper
2002-10-22 16:29:21 +00:00
parent 7977efcf98
commit 4c7e1fff2f
3 changed files with 82 additions and 0 deletions
+62
View File
@@ -0,0 +1,62 @@
/*******************************************************************************
/
/ File: net_settings.h
/
/ Description: Network preferences settings.
/
/ Copyright 1993-98, Be Incorporated, All Rights Reserved.
/
*******************************************************************************/
#ifndef _NET_SETTINGS_H
#define _NET_SETTINGS_H
#include <BeBuild.h>
#include <SupportDefs.h>
#if __cplusplus
extern "C" {
#endif /* __cplusplus */
/*
* Private types
*/
typedef struct _ns_entry {
const char *key;
const char *value;
} _ns_entry_t;
typedef struct _ns_section {
const char *heading;
unsigned nentries;
_ns_entry_t *entries;
} _ns_section_t;
/*
* Public type, but the data members are private
*/
typedef struct _net_settings {
int _dirty;
unsigned _nsections;
_ns_section_t *_sections;
char _fname[64];
} net_settings;
/*
* For finding and setting network preferences
*/
extern _IMPEXP_NET
char *find_net_setting(net_settings *ncw,
const char *heading, const char *name, char *value,
unsigned nbytes);
extern _IMPEXP_NET
status_t set_net_setting(net_settings *ncw,
const char *heading, const char *name,
const char *value);
#if __cplusplus
}
#endif /* __cplusplus */
#endif /* _NET_SETTINGS_H */
+6
View File
@@ -0,0 +1,6 @@
#ifndef _NET_NETDB_H
#define _NET_NETDB_H
#include <netdb.h> /* should include the posix netdb.h */
#endif /* _NETDB_H */
+14
View File
@@ -0,0 +1,14 @@
#ifndef _NET_SOCKET_H
#define _NET_SOCKET_H
#include <BeBuild.h>
#include <in.h> /* in_addr, sockaddr_in */
#include <sys/socket.h> /* sockaddr */
#include <sys/select.h>
/*
* Be extension
*/
#define B_UDP_MAX_SIZE (65536 - 1024)
#endif /* _SOCKET_H */