smbd/srvstr.c

説明を見る。
00001 /* 
00002    Unix SMB/CIFS implementation.
00003    server specific string routines
00004    Copyright (C) Andrew Tridgell 2001
00005    Copyright (C) Andrew Bartlett <abartlet@samba.org> 2003
00006    
00007    This program is free software; you can redistribute it and/or modify
00008    it under the terms of the GNU General Public License as published by
00009    the Free Software Foundation; either version 2 of the License, or
00010    (at your option) any later version.
00011    
00012    This program is distributed in the hope that it will be useful,
00013    but WITHOUT ANY WARRANTY; without even the implied warranty of
00014    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00015    GNU General Public License for more details.
00016    
00017    You should have received a copy of the GNU General Public License
00018    along with this program; if not, write to the Free Software
00019    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
00020 */
00021 
00022 #include "includes.h"
00023 extern int max_send;
00024 
00025 /* Make sure we can't write a string past the end of the buffer */
00026 
00027 size_t srvstr_push_fn(const char *function, unsigned int line, 
00028                       const char *base_ptr, void *dest, 
00029                       const char *src, int dest_len, int flags)
00030 {
00031         if (dest_len < 0) {
00032                 return 0;
00033         }
00034 
00035         /* 'normal' push into size-specified buffer */
00036         return push_string_fn(function, line, base_ptr, dest, src, dest_len, flags);
00037 }

Sambaに対してSat Aug 29 21:23:26 2009に生成されました。  doxygen 1.4.7