Changeset 745 for trunk/server/lib/util/data_blob.h
- Timestamp:
- Nov 27, 2012, 4:43:17 PM (13 years ago)
- Location:
- trunk/server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
- Property svn:mergeinfo changed
/vendor/current merged: 581,587,591,594,597,600,615,618,740
- Property svn:mergeinfo changed
-
trunk/server/lib/util/data_blob.h
r414 r745 2 2 Unix SMB/CIFS implementation. 3 3 DATA BLOB 4 4 5 Copyright (C) Andrew Tridgell 2001 6 Copyright (C) Andrew Bartlett 2001 7 5 8 This program is free software; you can redistribute it and/or modify 6 9 it under the terms of the GNU General Public License as published by … … 62 65 63 66 /** 64 reference a data blob, to the supplied TALLOC_CTX.65 Returns a NULL DATA_BLOB on failure66 **/67 _PUBLIC_ DATA_BLOB data_blob_talloc_reference(TALLOC_CTX *mem_ctx, DATA_BLOB *blob);68 69 /**70 67 construct a zero data blob, using supplied TALLOC_CTX. 71 68 use this sparingly as it initialises data - better to initialise … … 97 94 print the data_blob as hex string 98 95 **/ 99 _PUBLIC_ char *data_blob_hex_string(TALLOC_CTX *mem_ctx, const DATA_BLOB *blob); 96 _PUBLIC_ char *data_blob_hex_string_upper(TALLOC_CTX *mem_ctx, const DATA_BLOB *blob); 97 98 /** 99 print the data_blob as hex string 100 **/ 101 _PUBLIC_ char *data_blob_hex_string_lower(TALLOC_CTX *mem_ctx, const DATA_BLOB *blob); 100 102 101 103 /**
Note:
See TracChangeset
for help on using the changeset viewer.