mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-08-06 09:50:28 +00:00
added header and stubs
This commit is contained in:
parent
f8b9bd2b47
commit
d6a028f2fb
3 changed files with 117 additions and 0 deletions
|
@ -7,6 +7,19 @@ COSMOPOLITAN_C_START_
|
||||||
|
|
||||||
extern int h_errno;
|
extern int h_errno;
|
||||||
|
|
||||||
|
struct netent {
|
||||||
|
char *n_name; /* official network name */
|
||||||
|
char **n_aliases; /* alias list */
|
||||||
|
int n_addrtype; /* net address type */
|
||||||
|
uint32_t n_net; /* network number */
|
||||||
|
};
|
||||||
|
|
||||||
|
struct protoent {
|
||||||
|
char *p_name; /* official protocol name */
|
||||||
|
char **p_aliases; /* alias list */
|
||||||
|
int p_proto; /* protocol number */
|
||||||
|
};
|
||||||
|
|
||||||
struct hostent {
|
struct hostent {
|
||||||
char *h_name; /* official name of host */
|
char *h_name; /* official name of host */
|
||||||
char **h_aliases; /* alias list */
|
char **h_aliases; /* alias list */
|
||||||
|
@ -23,6 +36,18 @@ struct servent {
|
||||||
char *s_proto; /* protocol to use */
|
char *s_proto; /* protocol to use */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct netent *getnetent(void);
|
||||||
|
struct netent *getnetbyname(const char *);
|
||||||
|
struct netent *getnetbyaddr(uint32_t, int);
|
||||||
|
void setnetent(int);
|
||||||
|
void endnetent(void);
|
||||||
|
|
||||||
|
struct protoent *getprotoent(void);
|
||||||
|
struct protoent *getprotobyname(const char *);
|
||||||
|
struct protoent *getprotobynumber(int);
|
||||||
|
void setprotoent(int);
|
||||||
|
void endprotoent(void);
|
||||||
|
|
||||||
struct hostent *gethostent(void);
|
struct hostent *gethostent(void);
|
||||||
struct hostent *gethostbyname(const char *);
|
struct hostent *gethostbyname(const char *);
|
||||||
struct hostent *gethostbyaddr(const void *, socklen_t, int);
|
struct hostent *gethostbyaddr(const void *, socklen_t, int);
|
||||||
|
|
46
libc/dns/netent.c
Normal file
46
libc/dns/netent.c
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
||||||
|
│vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│
|
||||||
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
||||||
|
│ This is free and unencumbered software released into the public domain. │
|
||||||
|
│ │
|
||||||
|
│ Anyone is free to copy, modify, publish, use, compile, sell, or │
|
||||||
|
│ distribute this software, either in source code form or as a compiled │
|
||||||
|
│ binary, for any purpose, commercial or non-commercial, and by any │
|
||||||
|
│ means. │
|
||||||
|
│ │
|
||||||
|
│ In jurisdictions that recognize copyright laws, the author or authors │
|
||||||
|
│ of this software dedicate any and all copyright interest in the │
|
||||||
|
│ software to the public domain. We make this dedication for the benefit │
|
||||||
|
│ of the public at large and to the detriment of our heirs and │
|
||||||
|
│ successors. We intend this dedication to be an overt act of │
|
||||||
|
│ relinquishment in perpetuity of all present and future rights to this │
|
||||||
|
│ software under copyright law. │
|
||||||
|
│ │
|
||||||
|
│ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, │
|
||||||
|
│ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF │
|
||||||
|
│ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. │
|
||||||
|
│ IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR │
|
||||||
|
│ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, │
|
||||||
|
│ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR │
|
||||||
|
│ OTHER DEALINGS IN THE SOFTWARE. │
|
||||||
|
│ │
|
||||||
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
||||||
|
#include "libc/dns/ent.h"
|
||||||
|
|
||||||
|
struct netent *getnetent(void) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct netent *getnetbyname(const char *name) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct netent *getnetbyaddr(uint32_t net, int type) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
void setnetent(int stayopen) {
|
||||||
|
}
|
||||||
|
|
||||||
|
void endnetent(void) {
|
||||||
|
}
|
46
libc/dns/protoent.c
Normal file
46
libc/dns/protoent.c
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
||||||
|
│vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│
|
||||||
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
||||||
|
│ This is free and unencumbered software released into the public domain. │
|
||||||
|
│ │
|
||||||
|
│ Anyone is free to copy, modify, publish, use, compile, sell, or │
|
||||||
|
│ distribute this software, either in source code form or as a compiled │
|
||||||
|
│ binary, for any purpose, commercial or non-commercial, and by any │
|
||||||
|
│ means. │
|
||||||
|
│ │
|
||||||
|
│ In jurisdictions that recognize copyright laws, the author or authors │
|
||||||
|
│ of this software dedicate any and all copyright interest in the │
|
||||||
|
│ software to the public domain. We make this dedication for the benefit │
|
||||||
|
│ of the public at large and to the detriment of our heirs and │
|
||||||
|
│ successors. We intend this dedication to be an overt act of │
|
||||||
|
│ relinquishment in perpetuity of all present and future rights to this │
|
||||||
|
│ software under copyright law. │
|
||||||
|
│ │
|
||||||
|
│ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, │
|
||||||
|
│ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF │
|
||||||
|
│ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. │
|
||||||
|
│ IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR │
|
||||||
|
│ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, │
|
||||||
|
│ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR │
|
||||||
|
│ OTHER DEALINGS IN THE SOFTWARE. │
|
||||||
|
│ │
|
||||||
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
||||||
|
#include "libc/dns/ent.h"
|
||||||
|
|
||||||
|
struct protoent *getprotoent(void) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct protoent *getprotobyname(const char *name) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct protoent *getprotobynumber(int proto) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
void setprotoent(int stayopen) {
|
||||||
|
}
|
||||||
|
|
||||||
|
void endprotoent(void) {
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue