/titanic_44/usr/src/lib/libslp/clib/ |
H A D | slp.h | 119 SLPHandle hSLP, /* operation SLPHandle */ 130 SLPHandle hSLP, /* operation SLPHandle */ 142 SLPHandle hSLP, /* operation SLPHandle */ 155 SLPHandle hSLP, /* operation SLPHandle */ 172 SLPHandle hSLP /* handle to be closed */ 181 SLPHandle hSLP, /* operation SLPHandle */ 198 SLPHandle hSLP, /* operation SLPHandle */ 209 SLPHandle hSLP, /* operation SLPHandle */ 223 SLPHandle hSLP, /* operation SLPHandle */ 236 SLPHandle hSLP, /* operation SLPHandle */ [all …]
|
H A D | llib-lslp | 36 void SLPClose(SLPHandle hSLP); 38 SLPError SLPReg(SLPHandle hSLP, const char *pcSrvURL, 44 SLPError SLPDereg(SLPHandle hSLP, const char *pURL, 47 SLPError SLPDelAttrs(SLPHandle hSLP, const char *pURL, 52 SLPError SLPFindSrvTypes(SLPHandle hSLP, const char *pcNamingAuthority, 56 SLPError SLPFindSrvs(SLPHandle hSLP, const char *pcServiceType, 60 SLPError SLPFindAttrs(SLPHandle hSLP, const char *pcURL, const char *pcScope, 66 SLPError SLPFindScopes(SLPHandle hSLP, char **ppcScopes);
|
H A D | SLPReg.c | 138 SLPError SLPReg(SLPHandle hSLP, const char *pcSrvURL, in SLPReg() argument 147 if (!hSLP || !pcSrvURL || !*pcSrvURL || !pcSrvType || in SLPReg() 162 if ((err = slp_start_call(hSLP)) != SLP_OK) in SLPReg() 167 hSLP, pcSrvURL, usLifetime, pcSrvType, in SLPReg() 170 slp_end_call(hSLP); in SLPReg() 174 if ((err = reg_common(hSLP, msg, pvUser, callback)) == SLP_OK && in SLPReg() 180 hSLP, pcSrvURL, usLifetime, in SLPReg() 327 SLPError SLPDereg(SLPHandle hSLP, const char *pURL, in SLPDereg() argument 333 if (!hSLP || !pURL || !*pURL || !callback) { in SLPDereg() 346 if ((err = slp_start_call(hSLP)) != SLP_OK) in SLPDereg() [all …]
|
H A D | SLPUtils.c | 64 SLPError SLPFindScopes(SLPHandle hSLP, char **ppcScopes) { in SLPFindScopes() argument 70 if (!hSLP || !ppcScopes) { in SLPFindScopes() 95 ((slp_handle_impl_t *)hSLP)->internal_call = SLP_TRUE; in SLPFindScopes() 98 hSLP, reply, collate_scopes, in SLPFindScopes() 102 hSLP, NULL, collate_scopes, in SLPFindScopes() 107 ((slp_handle_impl_t *)hSLP)->internal_call = SLP_FALSE; in SLPFindScopes() 112 (void) SAAdvert_for_scopes(hSLP, &stree); in SLPFindScopes() 216 static SLPError SAAdvert_for_scopes(SLPHandle hSLP, void **stree) { in SAAdvert_for_scopes() argument 219 slp_handle_impl_t *hp = (slp_handle_impl_t *)hSLP; in SAAdvert_for_scopes() 257 err = slp_ua_common(hSLP, "", in SAAdvert_for_scopes() [all …]
|
H A D | SLPFindSrvTypes.c | 40 SLPError SLPFindSrvTypes(SLPHandle hSLP, const char *pcNamingAuthority, in SLPFindSrvTypes() argument 45 if (!hSLP || !pcNamingAuthority || !pcScopeList || in SLPFindSrvTypes() 55 if ((err = slp_start_call(hSLP)) != SLP_OK) in SLPFindSrvTypes() 59 err = slp_packSrvTypeRqst(hSLP, pcNamingAuthority); in SLPFindSrvTypes() 62 err = slp_ua_common(hSLP, pcScopeList, in SLPFindSrvTypes() 67 slp_end_call(hSLP); in SLPFindSrvTypes()
|
H A D | SLPFindAttrs.c | 52 SLPError SLPFindAttrs(SLPHandle hSLP, const char *pcURL, const char *pcScope, in SLPFindAttrs() argument 64 if (!hSLP || !pcURL || !pcScope || (!*pcScope && !isSpecial) || in SLPFindAttrs() 75 if ((err = slp_start_call(hSLP)) != SLP_OK) in SLPFindAttrs() 81 err = slp_packSrvRqst(pcURL, "", hSLP); in SLPFindAttrs() 82 ((slp_handle_impl_t *)hSLP)->force_multicast = SLP_TRUE; in SLPFindAttrs() 85 err = slp_packSrvRqst(pcURL, "", hSLP); in SLPFindAttrs() 86 ((slp_handle_impl_t *)hSLP)->force_multicast = SLP_TRUE; in SLPFindAttrs() 91 err = slp_packAttrRqst(hSLP, pcURL, pcAttrIds); in SLPFindAttrs() 95 err = slp_ua_common(hSLP, pcScope, in SLPFindAttrs() 100 slp_end_call(hSLP); in SLPFindAttrs()
|
H A D | SLPOpen.c | 110 void SLPClose(SLPHandle hSLP) { in SLPClose() argument 111 slp_handle_impl_t *hp = (slp_handle_impl_t *)hSLP; in SLPClose() 113 if (!hSLP) { in SLPClose()
|
H A D | SLPFindSrvs.c | 56 SLPError SLPFindSrvs(SLPHandle hSLP, const char *pcServiceType, in SLPFindSrvs() argument 60 slp_handle_impl_t *hp = (slp_handle_impl_t *)hSLP; in SLPFindSrvs() 68 if (!hSLP || !pcServiceType || !pcScope || (!*pcScope && !isSpecial) || in SLPFindSrvs() 79 if ((err = slp_start_call(hSLP)) != SLP_OK) in SLPFindSrvs() 97 err = slp_ua_common(hSLP, pcScope, in SLPFindSrvs() 101 slp_end_call(hSLP); in SLPFindSrvs()
|
H A D | slp_ua_common.c | 50 SLPError slp_ua_common(SLPHandle hSLP, const char *scopes, in slp_ua_common() argument 61 hp = (slp_handle_impl_t *)hSLP; in slp_ua_common()
|