mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-08 12:28:11 +02:00
Documentation updates
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@4333 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
parent
afb856f53f
commit
ad4d2baec9
3 changed files with 23 additions and 3 deletions
|
|
@ -32,7 +32,9 @@ CFILE_GLOB=
|
||||||
IGNORE_HFILES= \
|
IGNORE_HFILES= \
|
||||||
crypto.h \
|
crypto.h \
|
||||||
nm-setting-ip6-config.h \
|
nm-setting-ip6-config.h \
|
||||||
nm-setting-template.h
|
nm-setting-template.h \
|
||||||
|
nm-utils-private.h \
|
||||||
|
nm-param-spec-specialized.h
|
||||||
|
|
||||||
# Images to copy into HTML directory.
|
# Images to copy into HTML directory.
|
||||||
HTML_IMAGES =
|
HTML_IMAGES =
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,15 @@
|
||||||
#include "nm-setting-ip6-config.h"
|
#include "nm-setting-ip6-config.h"
|
||||||
#include "crypto.h"
|
#include "crypto.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SECTION:nm-utils
|
||||||
|
* @short_description: Utility functions
|
||||||
|
* @include: nm-utils.h
|
||||||
|
*
|
||||||
|
* A collection of utility functions for working SSIDs, IP addresses, WiFi
|
||||||
|
* access points and devices, among other things.
|
||||||
|
*/
|
||||||
|
|
||||||
/* IP6 currently incomplete */
|
/* IP6 currently incomplete */
|
||||||
GSList *nm_utils_ip6_addresses_from_gvalue (const GValue *value);
|
GSList *nm_utils_ip6_addresses_from_gvalue (const GValue *value);
|
||||||
void nm_utils_ip6_addresses_to_gvalue (GSList *list, GValue *value);
|
void nm_utils_ip6_addresses_to_gvalue (GSList *list, GValue *value);
|
||||||
|
|
|
||||||
|
|
@ -35,6 +35,11 @@
|
||||||
/* The API defined here is _NOT_ guaranteed in any way!! */
|
/* The API defined here is _NOT_ guaranteed in any way!! */
|
||||||
/*********************************************************/
|
/*********************************************************/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* nm_print_backtrace:
|
||||||
|
*
|
||||||
|
* Prints a backtrace of the calling process to the logging location.
|
||||||
|
*/
|
||||||
#define nm_print_backtrace() \
|
#define nm_print_backtrace() \
|
||||||
G_STMT_START \
|
G_STMT_START \
|
||||||
{ \
|
{ \
|
||||||
|
|
@ -59,6 +64,12 @@ G_STMT_START \
|
||||||
} \
|
} \
|
||||||
G_STMT_END
|
G_STMT_END
|
||||||
|
|
||||||
|
/**
|
||||||
|
* nm_get_timestamp:
|
||||||
|
* @timestamp: location in which to place the current timestamp
|
||||||
|
*
|
||||||
|
* For debugging only.
|
||||||
|
*/
|
||||||
#define nm_get_timestamp(timestamp) \
|
#define nm_get_timestamp(timestamp) \
|
||||||
G_STMT_START \
|
G_STMT_START \
|
||||||
{ \
|
{ \
|
||||||
|
|
@ -153,8 +164,6 @@ GHashTable *nm_utils_gvalue_hash_dup (GHashTable *hash);
|
||||||
void nm_utils_slist_free (GSList *list,
|
void nm_utils_slist_free (GSList *list,
|
||||||
GDestroyNotify elem_destroy_fn);
|
GDestroyNotify elem_destroy_fn);
|
||||||
|
|
||||||
void nm_utils_register_value_transformations (void);
|
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
NMU_SEC_INVALID = 0,
|
NMU_SEC_INVALID = 0,
|
||||||
NMU_SEC_NONE,
|
NMU_SEC_NONE,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue