2 Unix SMB/Netbios implementation.
3 SMB client library implementation
4 Copyright (C) Andrew Tridgell 1998
5 Copyright (C) Richard Sharpe 2000, 2002
6 Copyright (C) John Terpstra 2000
7 Copyright (C) Tom Jansen (Ninja ISD) 2002
8 Copyright (C) Derrell Lipman 2003-2008
9 Copyright (C) Jeremy Allison 2007, 2008
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 #define __LIBSMBCLIENT_INTERNAL__
27 #include "libsmbclient.h"
28 #include "libsmb_internal.h"
31 /** Get the netbios name used for making connections */
33 smbc_getNetbiosName(SMBCCTX
*c
)
35 return c
->netbios_name
;
38 /** Set the netbios name used for making connections */
40 smbc_setNetbiosName(SMBCCTX
*c
, char * netbios_name
)
42 SAFE_FREE(c
->netbios_name
);
44 c
->netbios_name
= SMB_STRDUP(netbios_name
);
48 /** Get the workgroup used for making connections */
50 smbc_getWorkgroup(SMBCCTX
*c
)
55 /** Set the workgroup used for making connections */
57 smbc_setWorkgroup(SMBCCTX
*c
, char * workgroup
)
59 SAFE_FREE(c
->workgroup
);
61 c
->workgroup
= SMB_STRDUP(workgroup
);
65 /** Get the username used for making connections */
67 smbc_getUser(SMBCCTX
*c
)
72 /** Set the username used for making connections */
74 smbc_setUser(SMBCCTX
*c
, char * user
)
78 c
->user
= SMB_STRDUP(user
);
82 /** Get the debug level */
84 smbc_getDebug(SMBCCTX
*c
)
89 /** Set the debug level */
91 smbc_setDebug(SMBCCTX
*c
, int debug
)
94 snprintf(buf
, sizeof(buf
), "%d", debug
);
96 lp_set_cmdline("log level", buf
);
100 * Get the timeout used for waiting on connections and response data
104 smbc_getTimeout(SMBCCTX
*c
)
110 * Set the timeout used for waiting on connections and response data
114 smbc_setTimeout(SMBCCTX
*c
, int timeout
)
116 c
->timeout
= timeout
;
119 /** Get whether to log to standard error instead of standard output */
121 smbc_getOptionDebugToStderr(SMBCCTX
*c
)
123 /* Because this is a global concept, it is better to check
124 * what is really set, rather than what we wanted set
125 * (particularly as you cannot go back to stdout). */
126 return debug_get_output_is_stderr();
129 /** Set whether to log to standard error instead of standard output.
130 * This option is 'sticky' - once set to true, it cannot be set to
131 * false again, as it is global to the process, as once we have been
132 * told that it is not safe to safe to write to stdout, we shouldn't
133 * go back as we don't know it was this context that set it that way.
136 smbc_setOptionDebugToStderr(SMBCCTX
*c
, smbc_bool b
)
140 * We do not have a unique per-thread debug state? For
141 * now, we'll just leave it up to the user. If any one
142 * context spefies debug to stderr then all will be (and
143 * will stay that way, as it is unsafe to flip back if
144 * stdout is in use for other things)
146 setup_logging("libsmbclient", DEBUG_STDERR
);
151 * Get whether to use new-style time attribute names, e.g. WRITE_TIME rather
152 * than the old-style names such as M_TIME. This allows also setting/getting
153 * CREATE_TIME which was previously unimplemented. (Note that the old C_TIME
154 * was supposed to be CHANGE_TIME but was confused and sometimes referred to
158 smbc_getOptionFullTimeNames(SMBCCTX
*c
)
160 return c
->internal
->full_time_names
;
164 * Set whether to use new-style time attribute names, e.g. WRITE_TIME rather
165 * than the old-style names such as M_TIME. This allows also setting/getting
166 * CREATE_TIME which was previously unimplemented. (Note that the old C_TIME
167 * was supposed to be CHANGE_TIME but was confused and sometimes referred to
171 smbc_setOptionFullTimeNames(SMBCCTX
*c
, smbc_bool b
)
173 c
->internal
->full_time_names
= b
;
177 * Get the share mode to use for files opened with SMBC_open_ctx(). The
178 * default is SMBC_SHAREMODE_DENY_NONE.
181 smbc_getOptionOpenShareMode(SMBCCTX
*c
)
183 return c
->internal
->share_mode
;
187 * Set the share mode to use for files opened with SMBC_open_ctx(). The
188 * default is SMBC_SHAREMODE_DENY_NONE.
191 smbc_setOptionOpenShareMode(SMBCCTX
*c
, smbc_share_mode share_mode
)
193 c
->internal
->share_mode
= share_mode
;
196 /** Retrieve a previously set user data handle */
198 smbc_getOptionUserData(SMBCCTX
*c
)
200 return c
->internal
->user_data
;
203 /** Save a user data handle */
205 smbc_setOptionUserData(SMBCCTX
*c
, void *user_data
)
207 c
->internal
->user_data
= user_data
;
210 /** Get the encoded value for encryption level. */
211 smbc_smb_encrypt_level
212 smbc_getOptionSmbEncryptionLevel(SMBCCTX
*c
)
214 return c
->internal
->smb_encryption_level
;
217 /** Set the encoded value for encryption level. */
219 smbc_setOptionSmbEncryptionLevel(SMBCCTX
*c
, smbc_smb_encrypt_level level
)
221 c
->internal
->smb_encryption_level
= level
;
225 * Get whether to treat file names as case-sensitive if we can't determine
226 * when connecting to the remote share whether the file system is case
227 * sensitive. This defaults to FALSE since it's most likely that if we can't
228 * retrieve the file system attributes, it's a very old file system that does
229 * not support case sensitivity.
232 smbc_getOptionCaseSensitive(SMBCCTX
*c
)
234 return c
->internal
->case_sensitive
;
238 * Set whether to treat file names as case-sensitive if we can't determine
239 * when connecting to the remote share whether the file system is case
240 * sensitive. This defaults to FALSE since it's most likely that if we can't
241 * retrieve the file system attributes, it's a very old file system that does
242 * not support case sensitivity.
245 smbc_setOptionCaseSensitive(SMBCCTX
*c
, smbc_bool b
)
247 c
->internal
->case_sensitive
= b
;
251 * Get from how many local master browsers should the list of workgroups be
252 * retrieved. It can take up to 12 minutes or longer after a server becomes a
253 * local master browser, for it to have the entire browse list (the list of
254 * workgroups/domains) from an entire network. Since a client never knows
255 * which local master browser will be found first, the one which is found
256 * first and used to retrieve a browse list may have an incomplete or empty
257 * browse list. By requesting the browse list from multiple local master
258 * browsers, a more complete list can be generated. For small networks (few
259 * workgroups), it is recommended that this value be set to 0, causing the
260 * browse lists from all found local master browsers to be retrieved and
261 * merged. For networks with many workgroups, a suitable value for this
262 * variable is probably somewhere around 3. (Default: 3).
265 smbc_getOptionBrowseMaxLmbCount(SMBCCTX
*c
)
267 return c
->options
.browse_max_lmb_count
;
271 * Set from how many local master browsers should the list of workgroups be
272 * retrieved. It can take up to 12 minutes or longer after a server becomes a
273 * local master browser, for it to have the entire browse list (the list of
274 * workgroups/domains) from an entire network. Since a client never knows
275 * which local master browser will be found first, the one which is found
276 * first and used to retrieve a browse list may have an incomplete or empty
277 * browse list. By requesting the browse list from multiple local master
278 * browsers, a more complete list can be generated. For small networks (few
279 * workgroups), it is recommended that this value be set to 0, causing the
280 * browse lists from all found local master browsers to be retrieved and
281 * merged. For networks with many workgroups, a suitable value for this
282 * variable is probably somewhere around 3. (Default: 3).
285 smbc_setOptionBrowseMaxLmbCount(SMBCCTX
*c
, int count
)
287 c
->options
.browse_max_lmb_count
= count
;
291 * Get whether to url-encode readdir entries.
293 * There is a difference in the desired return strings from
294 * smbc_readdir() depending upon whether the filenames are to
295 * be displayed to the user, or whether they are to be
296 * appended to the path name passed to smbc_opendir() to call
297 * a further smbc_ function (e.g. open the file with
298 * smbc_open()). In the former case, the filename should be
299 * in "human readable" form. In the latter case, the smbc_
300 * functions expect a URL which must be url-encoded. Those
301 * functions decode the URL. If, for example, smbc_readdir()
302 * returned a file name of "abc%20def.txt", passing a path
303 * with this file name attached to smbc_open() would cause
304 * smbc_open to attempt to open the file "abc def.txt" since
305 * the %20 is decoded into a space.
307 * Set this option to True if the names returned by
308 * smbc_readdir() should be url-encoded such that they can be
309 * passed back to another smbc_ call. Set it to False if the
310 * names returned by smbc_readdir() are to be presented to the
313 * For backwards compatibility, this option defaults to False.
316 smbc_getOptionUrlEncodeReaddirEntries(SMBCCTX
*c
)
318 return c
->options
.urlencode_readdir_entries
;
322 * Set whether to url-encode readdir entries.
324 * There is a difference in the desired return strings from
325 * smbc_readdir() depending upon whether the filenames are to
326 * be displayed to the user, or whether they are to be
327 * appended to the path name passed to smbc_opendir() to call
328 * a further smbc_ function (e.g. open the file with
329 * smbc_open()). In the former case, the filename should be
330 * in "human readable" form. In the latter case, the smbc_
331 * functions expect a URL which must be url-encoded. Those
332 * functions decode the URL. If, for example, smbc_readdir()
333 * returned a file name of "abc%20def.txt", passing a path
334 * with this file name attached to smbc_open() would cause
335 * smbc_open to attempt to open the file "abc def.txt" since
336 * the %20 is decoded into a space.
338 * Set this option to True if the names returned by
339 * smbc_readdir() should be url-encoded such that they can be
340 * passed back to another smbc_ call. Set it to False if the
341 * names returned by smbc_readdir() are to be presented to the
344 * For backwards compatibility, this option defaults to False.
347 smbc_setOptionUrlEncodeReaddirEntries(SMBCCTX
*c
, smbc_bool b
)
349 c
->options
.urlencode_readdir_entries
= b
;
353 * Get whether to use the same connection for all shares on a server.
355 * Some Windows versions appear to have a limit to the number
356 * of concurrent SESSIONs and/or TREE CONNECTions. In
357 * one-shot programs (i.e. the program runs and then quickly
358 * ends, thereby shutting down all connections), it is
359 * probably reasonable to establish a new connection for each
360 * share. In long-running applications, the limitation can be
361 * avoided by using only a single connection to each server,
362 * and issuing a new TREE CONNECT when the share is accessed.
365 smbc_getOptionOneSharePerServer(SMBCCTX
*c
)
367 return c
->options
.one_share_per_server
;
371 * Set whether to use the same connection for all shares on a server.
373 * Some Windows versions appear to have a limit to the number
374 * of concurrent SESSIONs and/or TREE CONNECTions. In
375 * one-shot programs (i.e. the program runs and then quickly
376 * ends, thereby shutting down all connections), it is
377 * probably reasonable to establish a new connection for each
378 * share. In long-running applications, the limitation can be
379 * avoided by using only a single connection to each server,
380 * and issuing a new TREE CONNECT when the share is accessed.
383 smbc_setOptionOneSharePerServer(SMBCCTX
*c
, smbc_bool b
)
385 c
->options
.one_share_per_server
= b
;
388 /** Get whether to enable use of kerberos */
390 smbc_getOptionUseKerberos(SMBCCTX
*c
)
392 return c
->flags
& SMB_CTX_FLAG_USE_KERBEROS
? True
: False
;
395 /** Set whether to enable use of kerberos */
397 smbc_setOptionUseKerberos(SMBCCTX
*c
, smbc_bool b
)
400 c
->flags
|= SMB_CTX_FLAG_USE_KERBEROS
;
402 c
->flags
&= ~SMB_CTX_FLAG_USE_KERBEROS
;
406 /** Get whether to fallback after kerberos */
408 smbc_getOptionFallbackAfterKerberos(SMBCCTX
*c
)
410 return c
->flags
& SMB_CTX_FLAG_FALLBACK_AFTER_KERBEROS
? True
: False
;
413 /** Set whether to fallback after kerberos */
415 smbc_setOptionFallbackAfterKerberos(SMBCCTX
*c
, smbc_bool b
)
418 c
->flags
|= SMB_CTX_FLAG_FALLBACK_AFTER_KERBEROS
;
420 c
->flags
&= ~SMB_CTX_FLAG_FALLBACK_AFTER_KERBEROS
;
424 /** Get whether to automatically select anonymous login */
426 smbc_getOptionNoAutoAnonymousLogin(SMBCCTX
*c
)
428 return c
->flags
& SMBCCTX_FLAG_NO_AUTO_ANONYMOUS_LOGON
? True
: False
;
431 /** Set whether to automatically select anonymous login */
433 smbc_setOptionNoAutoAnonymousLogin(SMBCCTX
*c
, smbc_bool b
)
436 c
->flags
|= SMBCCTX_FLAG_NO_AUTO_ANONYMOUS_LOGON
;
438 c
->flags
&= ~SMBCCTX_FLAG_NO_AUTO_ANONYMOUS_LOGON
;
442 /** Get whether to enable use of kerberos */
444 smbc_getOptionUseCCache(SMBCCTX
*c
)
446 return c
->flags
& SMB_CTX_FLAG_USE_CCACHE
? True
: False
;
449 /** Set whether to enable use of kerberos */
451 smbc_setOptionUseCCache(SMBCCTX
*c
, smbc_bool b
)
454 c
->flags
|= SMB_CTX_FLAG_USE_CCACHE
;
456 c
->flags
&= ~SMB_CTX_FLAG_USE_CCACHE
;
460 /** Get whether to enable use of the winbind ccache */
462 smbc_getOptionUseNTHash(SMBCCTX
*c
)
464 return (c
->flags
& SMB_CTX_FLAG_USE_NT_HASH
) != 0;
467 /** Set indication that the password supplied is the NT hash */
469 smbc_setOptionUseNTHash(SMBCCTX
*c
, smbc_bool b
)
472 c
->flags
|= SMB_CTX_FLAG_USE_NT_HASH
;
474 c
->flags
&= ~SMB_CTX_FLAG_USE_NT_HASH
;
478 /** Get the function for obtaining authentication data */
479 smbc_get_auth_data_fn
480 smbc_getFunctionAuthData(SMBCCTX
*c
)
482 return c
->callbacks
.auth_fn
;
485 /** Set the function for obtaining authentication data */
487 smbc_setFunctionAuthData(SMBCCTX
*c
, smbc_get_auth_data_fn fn
)
489 c
->internal
->auth_fn_with_context
= NULL
;
490 c
->callbacks
.auth_fn
= fn
;
493 /** Get the new-style authentication function which includes the context. */
494 smbc_get_auth_data_with_context_fn
495 smbc_getFunctionAuthDataWithContext(SMBCCTX
*c
)
497 return c
->internal
->auth_fn_with_context
;
500 /** Set the new-style authentication function which includes the context. */
502 smbc_setFunctionAuthDataWithContext(SMBCCTX
*c
,
503 smbc_get_auth_data_with_context_fn fn
)
505 c
->callbacks
.auth_fn
= NULL
;
506 c
->internal
->auth_fn_with_context
= fn
;
509 /** Get the function for checking if a server is still good */
511 smbc_getFunctionCheckServer(SMBCCTX
*c
)
513 return c
->callbacks
.check_server_fn
;
516 /** Set the function for checking if a server is still good */
518 smbc_setFunctionCheckServer(SMBCCTX
*c
, smbc_check_server_fn fn
)
520 c
->callbacks
.check_server_fn
= fn
;
523 /** Get the function for removing a server if unused */
524 smbc_remove_unused_server_fn
525 smbc_getFunctionRemoveUnusedServer(SMBCCTX
*c
)
527 return c
->callbacks
.remove_unused_server_fn
;
530 /** Set the function for removing a server if unused */
532 smbc_setFunctionRemoveUnusedServer(SMBCCTX
*c
,
533 smbc_remove_unused_server_fn fn
)
535 c
->callbacks
.remove_unused_server_fn
= fn
;
538 /** Get the function for adding a cached server */
539 smbc_add_cached_srv_fn
540 smbc_getFunctionAddCachedServer(SMBCCTX
*c
)
542 return c
->callbacks
.add_cached_srv_fn
;
545 /** Set the function for adding a cached server */
547 smbc_setFunctionAddCachedServer(SMBCCTX
*c
, smbc_add_cached_srv_fn fn
)
549 c
->callbacks
.add_cached_srv_fn
= fn
;
552 /** Get the function for server cache lookup */
553 smbc_get_cached_srv_fn
554 smbc_getFunctionGetCachedServer(SMBCCTX
*c
)
556 return c
->callbacks
.get_cached_srv_fn
;
559 /** Set the function for server cache lookup */
561 smbc_setFunctionGetCachedServer(SMBCCTX
*c
, smbc_get_cached_srv_fn fn
)
563 c
->callbacks
.get_cached_srv_fn
= fn
;
566 /** Get the function for server cache removal */
567 smbc_remove_cached_srv_fn
568 smbc_getFunctionRemoveCachedServer(SMBCCTX
*c
)
570 return c
->callbacks
.remove_cached_srv_fn
;
573 /** Set the function for server cache removal */
575 smbc_setFunctionRemoveCachedServer(SMBCCTX
*c
,
576 smbc_remove_cached_srv_fn fn
)
578 c
->callbacks
.remove_cached_srv_fn
= fn
;
582 * Get the function for server cache purging. This function tries to
583 * remove all cached servers (e.g. on disconnect)
586 smbc_getFunctionPurgeCachedServers(SMBCCTX
*c
)
588 return c
->callbacks
.purge_cached_fn
;
591 /** Set the function to store private data of the server cache */
592 void smbc_setServerCacheData(SMBCCTX
*c
, struct smbc_server_cache
* cache
)
594 c
->internal
->server_cache
= cache
;
597 /** Get the function to store private data of the server cache */
598 struct smbc_server_cache
* smbc_getServerCacheData(SMBCCTX
*c
)
600 return c
->internal
->server_cache
;
605 * Set the function for server cache purging. This function tries to
606 * remove all cached servers (e.g. on disconnect)
609 smbc_setFunctionPurgeCachedServers(SMBCCTX
*c
, smbc_purge_cached_fn fn
)
611 c
->callbacks
.purge_cached_fn
= fn
;
615 * Callable functions for files.
619 smbc_getFunctionOpen(SMBCCTX
*c
)
625 smbc_setFunctionOpen(SMBCCTX
*c
, smbc_open_fn fn
)
631 smbc_getFunctionCreat(SMBCCTX
*c
)
637 smbc_setFunctionCreat(SMBCCTX
*c
, smbc_creat_fn fn
)
643 smbc_getFunctionRead(SMBCCTX
*c
)
649 smbc_setFunctionRead(SMBCCTX
*c
, smbc_read_fn fn
)
655 smbc_getFunctionWrite(SMBCCTX
*c
)
661 smbc_setFunctionWrite(SMBCCTX
*c
, smbc_write_fn fn
)
667 smbc_getFunctionUnlink(SMBCCTX
*c
)
673 smbc_setFunctionUnlink(SMBCCTX
*c
, smbc_unlink_fn fn
)
679 smbc_getFunctionRename(SMBCCTX
*c
)
685 smbc_setFunctionRename(SMBCCTX
*c
, smbc_rename_fn fn
)
691 smbc_getFunctionLseek(SMBCCTX
*c
)
697 smbc_setFunctionLseek(SMBCCTX
*c
, smbc_lseek_fn fn
)
703 smbc_getFunctionStat(SMBCCTX
*c
)
709 smbc_setFunctionStat(SMBCCTX
*c
, smbc_stat_fn fn
)
715 smbc_getFunctionFstat(SMBCCTX
*c
)
721 smbc_setFunctionFstat(SMBCCTX
*c
, smbc_fstat_fn fn
)
727 smbc_getFunctionStatVFS(SMBCCTX
*c
)
729 return c
->internal
->posix_emu
.statvfs_fn
;
733 smbc_setFunctionStatVFS(SMBCCTX
*c
, smbc_statvfs_fn fn
)
735 c
->internal
->posix_emu
.statvfs_fn
= fn
;
739 smbc_getFunctionFstatVFS(SMBCCTX
*c
)
741 return c
->internal
->posix_emu
.fstatvfs_fn
;
745 smbc_setFunctionFstatVFS(SMBCCTX
*c
, smbc_fstatvfs_fn fn
)
747 c
->internal
->posix_emu
.fstatvfs_fn
= fn
;
751 smbc_getFunctionFtruncate(SMBCCTX
*c
)
753 return c
->internal
->posix_emu
.ftruncate_fn
;
757 smbc_setFunctionFtruncate(SMBCCTX
*c
, smbc_ftruncate_fn fn
)
759 c
->internal
->posix_emu
.ftruncate_fn
= fn
;
763 smbc_getFunctionClose(SMBCCTX
*c
)
769 smbc_setFunctionClose(SMBCCTX
*c
, smbc_close_fn fn
)
776 * Callable functions for directories.
780 smbc_getFunctionOpendir(SMBCCTX
*c
)
786 smbc_setFunctionOpendir(SMBCCTX
*c
, smbc_opendir_fn fn
)
792 smbc_getFunctionClosedir(SMBCCTX
*c
)
798 smbc_setFunctionClosedir(SMBCCTX
*c
, smbc_closedir_fn fn
)
804 smbc_getFunctionReaddir(SMBCCTX
*c
)
810 smbc_setFunctionReaddir(SMBCCTX
*c
, smbc_readdir_fn fn
)
816 smbc_getFunctionGetdents(SMBCCTX
*c
)
822 smbc_setFunctionGetdents(SMBCCTX
*c
, smbc_getdents_fn fn
)
828 smbc_getFunctionMkdir(SMBCCTX
*c
)
834 smbc_setFunctionMkdir(SMBCCTX
*c
, smbc_mkdir_fn fn
)
840 smbc_getFunctionRmdir(SMBCCTX
*c
)
846 smbc_setFunctionRmdir(SMBCCTX
*c
, smbc_rmdir_fn fn
)
852 smbc_getFunctionTelldir(SMBCCTX
*c
)
858 smbc_setFunctionTelldir(SMBCCTX
*c
, smbc_telldir_fn fn
)
864 smbc_getFunctionLseekdir(SMBCCTX
*c
)
870 smbc_setFunctionLseekdir(SMBCCTX
*c
, smbc_lseekdir_fn fn
)
876 smbc_getFunctionFstatdir(SMBCCTX
*c
)
882 smbc_setFunctionFstatdir(SMBCCTX
*c
, smbc_fstatdir_fn fn
)
889 * Callable functions applicable to both files and directories.
893 smbc_getFunctionChmod(SMBCCTX
*c
)
899 smbc_setFunctionChmod(SMBCCTX
*c
, smbc_chmod_fn fn
)
905 smbc_getFunctionUtimes(SMBCCTX
*c
)
911 smbc_setFunctionUtimes(SMBCCTX
*c
, smbc_utimes_fn fn
)
917 smbc_getFunctionSetxattr(SMBCCTX
*c
)
923 smbc_setFunctionSetxattr(SMBCCTX
*c
, smbc_setxattr_fn fn
)
929 smbc_getFunctionGetxattr(SMBCCTX
*c
)
935 smbc_setFunctionGetxattr(SMBCCTX
*c
, smbc_getxattr_fn fn
)
941 smbc_getFunctionRemovexattr(SMBCCTX
*c
)
943 return c
->removexattr
;
947 smbc_setFunctionRemovexattr(SMBCCTX
*c
, smbc_removexattr_fn fn
)
953 smbc_getFunctionListxattr(SMBCCTX
*c
)
959 smbc_setFunctionListxattr(SMBCCTX
*c
, smbc_listxattr_fn fn
)
966 * Callable functions related to printing
970 smbc_getFunctionPrintFile(SMBCCTX
*c
)
972 return c
->print_file
;
976 smbc_setFunctionPrintFile(SMBCCTX
*c
, smbc_print_file_fn fn
)
981 smbc_open_print_job_fn
982 smbc_getFunctionOpenPrintJob(SMBCCTX
*c
)
984 return c
->open_print_job
;
988 smbc_setFunctionOpenPrintJob(SMBCCTX
*c
,
989 smbc_open_print_job_fn fn
)
991 c
->open_print_job
= fn
;
994 smbc_list_print_jobs_fn
995 smbc_getFunctionListPrintJobs(SMBCCTX
*c
)
997 return c
->list_print_jobs
;
1001 smbc_setFunctionListPrintJobs(SMBCCTX
*c
,
1002 smbc_list_print_jobs_fn fn
)
1004 c
->list_print_jobs
= fn
;
1007 smbc_unlink_print_job_fn
1008 smbc_getFunctionUnlinkPrintJob(SMBCCTX
*c
)
1010 return c
->unlink_print_job
;
1014 smbc_setFunctionUnlinkPrintJob(SMBCCTX
*c
,
1015 smbc_unlink_print_job_fn fn
)
1017 c
->unlink_print_job
= fn
;