1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 #include "sdp_os_defs.h"
7 #include "sdp_private.h"
11 /******************************************************************/
12 /* Required Platform Routines */
14 /* These routines are called from the common SDP code. */
15 /* They must be provided for each platform. */
17 /******************************************************************/
22 * Utility to send _size_bytes of data from the string
23 * pointed to by _ptr to the buginf function. This may make
24 * multiple buginf calls if the buffer is too large for buginf.
26 void sdp_dump_buffer (char * _ptr
, int _size_bytes
)
28 SDPLogDebug("sdp", _ptr
);
31 /******************************************************************/
33 /* Platform Specific Routines */
35 /* These routines are only used in this particular platform. */
36 /* They are called from the required platform specific */
37 /* routines provided below, not from the common SDP code. */
39 /******************************************************************/
41 /* There are currently no platform specific routines required. */