1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-04 08:22:08 +03:00

r5304: removed lib/socket/socket.h from includes.h

(This used to be commit b902ea546d)
This commit is contained in:
Andrew Tridgell
2005-02-10 06:59:29 +00:00
committed by Gerald (Jerry) Carter
parent 8fb475f626
commit bed7c9ec32
23 changed files with 65 additions and 1 deletions

View File

@ -122,7 +122,6 @@ extern int errno;
#include "enums.h" #include "enums.h"
#include "smb_macros.h" #include "smb_macros.h"
#include "smb.h" #include "smb.h"
#include "lib/socket/socket.h"
#include "libcli/ldap/ldap.h" #include "libcli/ldap/ldap.h"
#include "byteorder.h" #include "byteorder.h"
#include "module.h" #include "module.h"

View File

@ -26,6 +26,7 @@
#include "asn_1.h" #include "asn_1.h"
#include "ldap_server/ldap_server.h" #include "ldap_server/ldap_server.h"
#include "smbd/service_stream.h" #include "smbd/service_stream.h"
#include "lib/socket/socket.h"
/* /*
close the socket and shutdown a server_context close the socket and shutdown a server_context

View File

@ -26,6 +26,7 @@
#include "system/time.h" #include "system/time.h"
#include "messages.h" #include "messages.h"
#include "dlinklist.h" #include "dlinklist.h"
#include "lib/socket/socket.h"
/* change the message version with any incompatible changes in the protocol */ /* change the message version with any incompatible changes in the protocol */
#define MESSAGING_VERSION 1 #define MESSAGING_VERSION 1

View File

@ -34,6 +34,7 @@
#include "includes.h" #include "includes.h"
#include "system/network.h" #include "system/network.h"
#include "system/iconv.h" #include "system/iconv.h"
#include "lib/socket/socket.h"
#define FAIL (-1) #define FAIL (-1)
#define ALLONES ((uint32_t)0xFFFFFFFF) #define ALLONES ((uint32_t)0xFFFFFFFF)

View File

@ -5,6 +5,7 @@
SUBSYSTEM = SOCKET SUBSYSTEM = SOCKET
INIT_OBJ_FILES = \ INIT_OBJ_FILES = \
lib/socket/socket_ipv4.o lib/socket/socket_ipv4.o
NOPROTO=YES
# End MODULE socket_ipv4 # End MODULE socket_ipv4
################################################ ################################################
@ -14,6 +15,7 @@ INIT_OBJ_FILES = \
SUBSYSTEM = SOCKET SUBSYSTEM = SOCKET
INIT_OBJ_FILES = \ INIT_OBJ_FILES = \
lib/socket/socket_ipv6.o lib/socket/socket_ipv6.o
NOPROTO=YES
# End MODULE socket_ipv6 # End MODULE socket_ipv6
################################################ ################################################
@ -23,6 +25,7 @@ INIT_OBJ_FILES = \
SUBSYSTEM = SOCKET SUBSYSTEM = SOCKET
INIT_OBJ_FILES = \ INIT_OBJ_FILES = \
lib/socket/socket_unix.o lib/socket/socket_unix.o
NOPROTO=YES
# End MODULE socket_unix # End MODULE socket_unix
################################################ ################################################
@ -33,5 +36,6 @@ INIT_OBJ_FILES = \
lib/socket/socket.o lib/socket/socket.o
ADD_OBJ_FILES = \ ADD_OBJ_FILES = \
lib/socket/access.o lib/socket/access.o
NOPROTO=YES
# End SUBSYSTEM SOCKET # End SUBSYSTEM SOCKET
################################################ ################################################

View File

@ -19,6 +19,7 @@
*/ */
#include "includes.h" #include "includes.h"
#include "lib/socket/socket.h"
#include "system/filesys.h" #include "system/filesys.h"
/* /*
@ -326,6 +327,10 @@ NTSTATUS socket_dup(struct socket_context *sock)
const struct socket_ops *socket_getops_byname(const char *name, enum socket_type type) const struct socket_ops *socket_getops_byname(const char *name, enum socket_type type)
{ {
extern const struct socket_ops *socket_ipv4_ops(enum socket_type );
extern const struct socket_ops *socket_ipv6_ops(enum socket_type );
extern const struct socket_ops *socket_unixdom_ops(enum socket_type );
if (strcmp("ip", name) == 0 || if (strcmp("ip", name) == 0 ||
strcmp("ipv4", name) == 0) { strcmp("ipv4", name) == 0) {
return socket_ipv4_ops(type); return socket_ipv4_ops(type);

View File

@ -103,4 +103,39 @@ struct socket_context {
const struct socket_ops *ops; const struct socket_ops *ops;
}; };
/* prototypes */
NTSTATUS socket_create(const char *name, enum socket_type type,
struct socket_context **new_sock, uint32_t flags);
void socket_destroy(struct socket_context *sock);
NTSTATUS socket_connect(struct socket_context *sock,
const char *my_address, int my_port,
const char *server_address, int server_port,
uint32_t flags);
NTSTATUS socket_connect_complete(struct socket_context *sock, uint32_t flags);
NTSTATUS socket_listen(struct socket_context *sock, const char *my_address, int port, int queue_size, uint32_t flags);
NTSTATUS socket_accept(struct socket_context *sock, struct socket_context **new_sock);
NTSTATUS socket_recv(struct socket_context *sock, void *buf,
size_t wantlen, size_t *nread, uint32_t flags);
NTSTATUS socket_recvfrom(struct socket_context *sock, void *buf,
size_t wantlen, size_t *nread, uint32_t flags,
const char **src_addr, int *src_port);
NTSTATUS socket_send(struct socket_context *sock,
const DATA_BLOB *blob, size_t *sendlen, uint32_t flags);
NTSTATUS socket_sendto(struct socket_context *sock,
const DATA_BLOB *blob, size_t *sendlen, uint32_t flags,
const char *dest_addr, int dest_port);
NTSTATUS socket_set_option(struct socket_context *sock, const char *option, const char *val);
char *socket_get_peer_name(struct socket_context *sock, TALLOC_CTX *mem_ctx);
char *socket_get_peer_addr(struct socket_context *sock, TALLOC_CTX *mem_ctx);
int socket_get_peer_port(struct socket_context *sock);
char *socket_get_my_addr(struct socket_context *sock, TALLOC_CTX *mem_ctx);
int socket_get_my_port(struct socket_context *sock);
int socket_get_fd(struct socket_context *sock);
NTSTATUS socket_dup(struct socket_context *sock);
const struct socket_ops *socket_getops_byname(const char *name, enum socket_type type);
BOOL socket_check_access(struct socket_context *sock,
const char *service_name,
const char **allow_list, const char **deny_list);
#endif /* _SAMBA_SOCKET_H */ #endif /* _SAMBA_SOCKET_H */

View File

@ -24,6 +24,7 @@
#include "includes.h" #include "includes.h"
#include "system/network.h" #include "system/network.h"
#include "system/filesys.h" #include "system/filesys.h"
#include "lib/socket/socket.h"
static NTSTATUS ipv4_init(struct socket_context *sock) static NTSTATUS ipv4_init(struct socket_context *sock)
{ {

View File

@ -20,6 +20,7 @@
*/ */
#include "includes.h" #include "includes.h"
#include "lib/socket/socket.h"
#include "system/network.h" #include "system/network.h"
#include "system/filesys.h" #include "system/filesys.h"

View File

@ -22,6 +22,8 @@
*/ */
#include "includes.h" #include "includes.h"
#include "lib/socket/socket.h"
#include "lib/socket/socket.h"
#include "system/network.h" #include "system/network.h"
#include "system/filesys.h" #include "system/filesys.h"

View File

@ -24,6 +24,7 @@
#include "lib/events/events.h" #include "lib/events/events.h"
#include "dlinklist.h" #include "dlinklist.h"
#include "libcli/nbt/libnbt.h" #include "libcli/nbt/libnbt.h"
#include "lib/socket/socket.h"
#define NBT_MAX_PACKET_SIZE 2048 #define NBT_MAX_PACKET_SIZE 2048
#define NBT_MAX_REPLIES 1000 #define NBT_MAX_REPLIES 1000

View File

@ -25,6 +25,7 @@
#include "lib/events/events.h" #include "lib/events/events.h"
#include "libcli/raw/libcliraw.h" #include "libcli/raw/libcliraw.h"
#include "libcli/composite/composite.h" #include "libcli/composite/composite.h"
#include "lib/socket/socket.h"
/* /*
this private structure is used during async connection handling this private structure is used during async connection handling

View File

@ -22,6 +22,7 @@
#include "includes.h" #include "includes.h"
#include "libcli/raw/libcliraw.h" #include "libcli/raw/libcliraw.h"
#include "lib/socket/socket.h"
#include "system/time.h" #include "system/time.h"
#include "dlinklist.h" #include "dlinklist.h"
#include "lib/events/events.h" #include "lib/events/events.h"

View File

@ -25,6 +25,7 @@
#include "dlinklist.h" #include "dlinklist.h"
#include "lib/events/events.h" #include "lib/events/events.h"
#include "librpc/gen_ndr/ndr_epmapper.h" #include "librpc/gen_ndr/ndr_epmapper.h"
#include "lib/socket/socket.h"
#define MIN_HDR_SIZE 16 #define MIN_HDR_SIZE 16

View File

@ -24,6 +24,7 @@
#include "dlinklist.h" #include "dlinklist.h"
#include "nbt_server/nbt_server.h" #include "nbt_server/nbt_server.h"
#include "smbd/service_task.h" #include "smbd/service_task.h"
#include "lib/socket/socket.h"
/* /*

View File

@ -23,6 +23,7 @@
*/ */
#include "includes.h" #include "includes.h"
#include "lib/socket/socket.h"
#include "system/filesys.h" #include "system/filesys.h"
#include "lib/events/events.h" #include "lib/events/events.h"
#include "rpc_server/dcerpc_server.h" #include "rpc_server/dcerpc_server.h"

View File

@ -22,6 +22,8 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
#include "lib/socket/socket.h"
/* modules can use the following to determine if the interface has changed /* modules can use the following to determine if the interface has changed
* please increment the version number after each interface change * please increment the version number after each interface change
* with a comment and maybe update struct process_model_critical_sizes. * with a comment and maybe update struct process_model_critical_sizes.

View File

@ -24,6 +24,7 @@
#include "includes.h" #include "includes.h"
#include "process_model.h" #include "process_model.h"
#include "lib/events/events.h" #include "lib/events/events.h"
#include "lib/socket/socket.h"
#include "smbd/service_stream.h" #include "smbd/service_stream.h"
/* the range of ports to try for dcerpc over tcp endpoints */ /* the range of ports to try for dcerpc over tcp endpoints */

View File

@ -21,6 +21,7 @@
*/ */
#include "includes.h" #include "includes.h"
#include "lib/socket/socket.h"
#define CHECK_STATUS(status, correct) do { \ #define CHECK_STATUS(status, correct) do { \
if (!NT_STATUS_EQUAL(status, correct)) { \ if (!NT_STATUS_EQUAL(status, correct)) { \

View File

@ -23,6 +23,7 @@
#include "includes.h" #include "includes.h"
#include "libcli/nbt/libnbt.h" #include "libcli/nbt/libnbt.h"
#include "librpc/gen_ndr/ndr_nbt.h" #include "librpc/gen_ndr/ndr_nbt.h"
#include "lib/socket/socket.h"
#define CHECK_VALUE(v, correct) do { \ #define CHECK_VALUE(v, correct) do { \
if ((v) != (correct)) { \ if ((v) != (correct)) { \

View File

@ -23,6 +23,7 @@
#include "includes.h" #include "includes.h"
#include "libcli/nbt/libnbt.h" #include "libcli/nbt/libnbt.h"
#include "librpc/gen_ndr/ndr_nbt.h" #include "librpc/gen_ndr/ndr_nbt.h"
#include "lib/socket/socket.h"
#define CHECK_VALUE(v, correct) do { \ #define CHECK_VALUE(v, correct) do { \
if ((v) != (correct)) { \ if ((v) != (correct)) { \

View File

@ -27,6 +27,7 @@
#include "libcli/nbt/libnbt.h" #include "libcli/nbt/libnbt.h"
#include "lib/cmdline/popt_common.h" #include "lib/cmdline/popt_common.h"
#include "system/iconv.h" #include "system/iconv.h"
#include "lib/socket/socket.h"
/* command line options */ /* command line options */
static struct { static struct {

View File

@ -21,6 +21,7 @@
*/ */
#include "includes.h" #include "includes.h"
#include "lib/socket/socket.h"
#include "system/filesys.h" #include "system/filesys.h"
#include "dlinklist.h" #include "dlinklist.h"
#include "lib/events/events.h" #include "lib/events/events.h"