Home
last modified time | relevance | path

Searched refs:hSLP (Results 1 – 8 of 8) sorted by relevance

/illumos-gate/usr/src/lib/libslp/clib/
H A Dslp.h117 SLPHandle hSLP, /* operation SLPHandle */
128 SLPHandle hSLP, /* operation SLPHandle */
140 SLPHandle hSLP, /* operation SLPHandle */
153 SLPHandle hSLP, /* operation SLPHandle */
170 SLPHandle hSLP /* handle to be closed */
179 SLPHandle hSLP, /* operation SLPHandle */
196 SLPHandle hSLP, /* operation SLPHandle */
207 SLPHandle hSLP, /* operation SLPHandle */
221 SLPHandle hSLP, /* operation SLPHandle */
234 SLPHandle hSLP, /* operation SLPHandle */
[all …]
H A DSLPReg.c160 if ((err = slp_start_call(hSLP)) != SLP_OK) in SLPReg()
165 hSLP, pcSrvURL, usLifetime, pcSrvType, in SLPReg()
168 slp_end_call(hSLP); in SLPReg()
178 hSLP, pcSrvURL, usLifetime, in SLPReg()
325 SLPError SLPDereg(SLPHandle hSLP, const char *pURL, in SLPDereg() argument
331 if (!hSLP || !pURL || !*pURL || !callback) { in SLPDereg()
344 if ((err = slp_start_call(hSLP)) != SLP_OK) in SLPDereg()
351 slp_end_call(hSLP); in SLPDereg()
384 if ((err = slp_start_call(hSLP)) != SLP_OK) in SLPDelAttrs()
391 slp_end_call(hSLP); in SLPDelAttrs()
[all …]
H A DSLPUtils.c68 if (!hSLP || !ppcScopes) { in SLPFindScopes()
93 ((slp_handle_impl_t *)hSLP)->internal_call = SLP_TRUE; in SLPFindScopes()
96 hSLP, reply, collate_scopes, in SLPFindScopes()
100 hSLP, NULL, collate_scopes, in SLPFindScopes()
110 (void) SAAdvert_for_scopes(hSLP, &stree); in SLPFindScopes()
217 slp_handle_impl_t *hp = (slp_handle_impl_t *)hSLP; in SAAdvert_for_scopes()
255 err = slp_ua_common(hSLP, "", in SAAdvert_for_scopes()
285 cb(hSLP, NULL, SLP_LAST_CALL, cookie); in unpackSAAdvert_scope()
290 hSLP->internal_call = SLP_TRUE; in unpackSAAdvert_scope()
296 cont = cb(hSLP, scopes, SLP_OK, cookie); in unpackSAAdvert_scope()
[all …]
H A DSLPFindSrvTypes.c38 SLPError SLPFindSrvTypes(SLPHandle hSLP, const char *pcNamingAuthority, in SLPFindSrvTypes() argument
43 if (!hSLP || !pcNamingAuthority || !pcScopeList || in SLPFindSrvTypes()
53 if ((err = slp_start_call(hSLP)) != SLP_OK) in SLPFindSrvTypes()
57 err = slp_packSrvTypeRqst(hSLP, pcNamingAuthority); in SLPFindSrvTypes()
60 err = slp_ua_common(hSLP, pcScopeList, in SLPFindSrvTypes()
65 slp_end_call(hSLP); in SLPFindSrvTypes()
H A DSLPFindAttrs.c50 SLPError SLPFindAttrs(SLPHandle hSLP, const char *pcURL, const char *pcScope, in SLPFindAttrs() argument
62 if (!hSLP || !pcURL || !pcScope || (!*pcScope && !isSpecial) || in SLPFindAttrs()
73 if ((err = slp_start_call(hSLP)) != SLP_OK) in SLPFindAttrs()
79 err = slp_packSrvRqst(pcURL, "", hSLP); in SLPFindAttrs()
80 ((slp_handle_impl_t *)hSLP)->force_multicast = SLP_TRUE; in SLPFindAttrs()
83 err = slp_packSrvRqst(pcURL, "", hSLP); in SLPFindAttrs()
84 ((slp_handle_impl_t *)hSLP)->force_multicast = SLP_TRUE; in SLPFindAttrs()
89 err = slp_packAttrRqst(hSLP, pcURL, pcAttrIds); in SLPFindAttrs()
93 err = slp_ua_common(hSLP, pcScope, in SLPFindAttrs()
97 slp_end_call(hSLP); in SLPFindAttrs()
H A DSLPOpen.c108 void SLPClose(SLPHandle hSLP) { in SLPClose() argument
109 slp_handle_impl_t *hp = (slp_handle_impl_t *)hSLP; in SLPClose()
111 if (!hSLP) { in SLPClose()
H A DSLPFindSrvs.c54 SLPError SLPFindSrvs(SLPHandle hSLP, const char *pcServiceType, in SLPFindSrvs() argument
58 slp_handle_impl_t *hp = (slp_handle_impl_t *)hSLP; in SLPFindSrvs()
66 if (!hSLP || !pcServiceType || !pcScope || (!*pcScope && !isSpecial) || in SLPFindSrvs()
77 if ((err = slp_start_call(hSLP)) != SLP_OK) in SLPFindSrvs()
95 err = slp_ua_common(hSLP, pcScope, in SLPFindSrvs()
98 slp_end_call(hSLP); in SLPFindSrvs()
H A Dslp_ua_common.c48 SLPError slp_ua_common(SLPHandle hSLP, const char *scopes, in slp_ua_common() argument
59 hp = (slp_handle_impl_t *)hSLP; in slp_ua_common()