mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
e1733d7244
(This used to be commit cfb6bbdc31
)
17 lines
385 B
OpenEdge ABL
17 lines
385 B
OpenEdge ABL
%module libcli_smb
|
|
|
|
%import "../../lib/talloc/talloc.i"
|
|
%import "../../lib/events/events.i"
|
|
|
|
%{
|
|
#include "includes.h"
|
|
#include "lib/events/events.h"
|
|
#include "libcli/raw/libcliraw.h"
|
|
%}
|
|
|
|
struct smbcli_socket *smbcli_sock_connect_byname(const char *host, int port,
|
|
TALLOC_CTX *mem_ctx,
|
|
struct event_context *event_ctx);
|
|
|
|
void smbcli_sock_dead(struct smbcli_socket *sock);
|