Updated to version 1.120

Please keep in mind that this is still a development version and might surprise you (not necessarily in a good way).

Do not let me discourage you to build and test this version, although there will be some risks involved such as data corruption or loss of data.
This commit is contained in:
obarthel
2018-05-01 15:14:45 +02:00
parent a12354e2d7
commit cd5669e306
12 changed files with 491 additions and 269 deletions
+2 -1
View File
@@ -68,11 +68,12 @@ int smb_proc_connect(struct smb_server *server);
/* sock.c */
int smb_receive (struct smb_server *server, int sock_fd);
int smb_receive_with_payload (struct smb_server *server, int sock_fd, void * payload, int payload_size, int * payload_size_received);
int smb_catch_keepalive(struct smb_server *server);
int smb_dont_catch_keepalive(struct smb_server *server);
int smb_release(struct smb_server *server);
int smb_connect(struct smb_server *server);
int smb_request(struct smb_server *server);
int smb_request(struct smb_server *server,const void * payload,int payload_size);
int smb_trans2_request(struct smb_server *server, int *data_len, int *param_len, char **data, char **param);
int smb_request_read_raw(struct smb_server *server, unsigned char *target, int max_len);
int smb_request_write_raw(struct smb_server *server, unsigned const char *source, int length);