Searched refs:session (Results 1 - 25 of 543) sorted by relevance

1234567891011>>

/macosx-10.10.1/ipsec-286.1.1/ipsec-tools/racoon/
H A DipsecSessionTracer.c136 ipsecSessionGetConnectionDomain (ike_session_t *session) argument
138 if (session) {
139 if (session->is_cisco_ipsec) {
140 if (session->established) {
145 } else if (session->is_l2tpvpn_ipsec) {
146 if (session->established) {
151 } else if (session->is_btmm_ipsec) {
152 if (session->established) {
158 if (session->established) {
169 ipsecSessionGetConnectionLessDomain (ike_session_t *session) argument
186 ipsecSessionGetPhaseDomain(ike_session_t *session) argument
202 ipsecSessionLogEvent(ike_session_t *session, const char *event_msg) argument
218 ipsecSessionTracerStart(ike_session_t *session) argument
231 ipsecSessionTracerEvent(ike_session_t *session, ipsecSessionEventCode_t eventCode, const char *event, const char *failure_reason) argument
262 ipsecSessionTracerLogFailureRate(ike_session_t *session, const char *signature, double failure_rate) argument
285 ipsecSessionTracerLogStop(ike_session_t *session, int caused_by_failure, const char *reason) argument
333 ipsecSessionTracerStop(ike_session_t *session, int caused_by_failure, const char *reason) argument
447 ipsecSessionTracerLogEstablished(ike_session_t *session) argument
[all...]
H A Dsession.h1 /* $Id: session.h,v 1.3 2004/06/11 16:00:17 ludvigm Exp $ */
37 extern void session (void);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_authorization/lib/
H A DAuthorization.cpp46 CommonCriteria::AuditInfo session; local
48 session.get();
50 session.get(requestedSession);
52 *sessionId = session.sessionId();
54 *attributes = (SessionAttributeBits)session.flags();
60 // Create a new session.
62 // Securityd will pick up the new session when we next talk to it.
69 // we don't support the session creation flags anymore
72 CommonCriteria::AuditInfo session; local
73 session
88 SessionSetDistinguishedUser(SecuritySessionId session, uid_t user) argument
91 CommonCriteria::AuditInfo session; local
99 SessionGetDistinguishedUser(SecuritySessionId session, uid_t *user) argument
102 CommonCriteria::AuditInfo session; local
168 SessionSetUserPreferences(SecuritySessionId session) argument
[all...]
/macosx-10.10.1/postfix-255/postfix/src/smtp/
H A Dsmtp_session.c15 /* void smtp_session_free(session)
16 /* SMTP_SESSION *session;
18 /* int smtp_session_passivate(session, dest_prop, endp_prop)
19 /* SMTP_SESSION *session;
39 /* smtp_session_passivate() flattens an SMTP session so that
42 /* smtp_session_activate() inflates a flattened SMTP session
67 /* Destination specific session properties: the server is the
75 /* Endpoint specific session properties: all the features
125 SMTP_SESSION *session; local
130 session
179 smtp_session_free(SMTP_SESSION *session) argument
215 smtp_session_passivate(SMTP_SESSION *session, VSTRING *dest_prop, VSTRING *endp_prop) argument
287 SMTP_SESSION *session; local
[all...]
H A Dsmtp_sasl_glue.c11 /* void smtp_sasl_connect(session)
12 /* SMTP_SESSION *session;
14 /* void smtp_sasl_start(session, sasl_opts_name, sasl_opts_val)
15 /* SMTP_SESSION *session;
17 /* int smtp_sasl_passwd_lookup(session)
18 /* SMTP_SESSION *session;
20 /* int smtp_sasl_authenticate(session, why)
21 /* SMTP_SESSION *session;
24 /* void smtp_sasl_cleanup(session)
25 /* SMTP_SESSION *session;
157 smtp_sasl_passwd_lookup(SMTP_SESSION *session) argument
268 smtp_sasl_connect(SMTP_SESSION *session) argument
284 smtp_sasl_start(SMTP_SESSION *session, const char *sasl_opts_name, const char *sasl_opts_val) argument
304 smtp_sasl_authenticate(SMTP_SESSION *session, DSN_BUF *why) argument
433 smtp_sasl_cleanup(SMTP_SESSION *session) argument
462 smtp_sasl_passivate(SMTP_SESSION *session, VSTRING *buf) argument
468 smtp_sasl_activate(SMTP_SESSION *session, char *buf) argument
[all...]
H A Dsmtp_sasl_proto.c114 void smtp_sasl_helo_auth(SMTP_SESSION *session, const char *words) argument
126 if (session->sasl_mechanism_list) {
127 if (strcasecmp(session->sasl_mechanism_list, mech_list) != 0
129 && strlen(session->sasl_mechanism_list) < var_line_limit) {
130 junk = concatenate(session->sasl_mechanism_list, " ", mech_list,
132 myfree(session->sasl_mechanism_list);
133 session->sasl_mechanism_list = junk;
138 session->sasl_mechanism_list = mystrdup(mech_list);
142 session->namaddrport, words);
144 session
151 SMTP_SESSION *session = state->session; local
[all...]
H A Dsmtp_chat.c19 /* void smtp_chat_cmd(session, format, ...)
20 /* SMTP_SESSION *session;
25 /* SMTP_RESP *smtp_chat_resp(session)
26 /* SMTP_SESSION *session;
28 /* void smtp_chat_notify(session)
29 /* SMTP_SESSION *session;
31 /* void smtp_chat_init(session)
32 /* SMTP_SESSION *session;
34 /* void smtp_chat_reset(session)
35 /* SMTP_SESSION *session;
150 smtp_chat_init(SMTP_SESSION *session) argument
157 smtp_chat_reset(SMTP_SESSION *session) argument
167 smtp_chat_append(SMTP_SESSION *session, const char *direction, const char *data) argument
181 smtp_chat_cmd(SMTP_SESSION *session, const char *fmt,...) argument
235 smtp_chat_resp(SMTP_SESSION *session) argument
433 smtp_chat_notify(SMTP_SESSION *session) argument
[all...]
H A Dsmtp_proto.c157 * Sender and receiver state. A session does not necessarily go through a
169 * and with its own dedicated state transitions. The session proceeds as
234 #define SMTP_MIME_DOWNGRADE(session, request) \
236 && (session->features & SMTP_FEATURE_8BITMIME) == 0 \
262 SMTP_SESSION *session = state->session; local
294 int saved_features = session->features;
303 smtp_stream_setup(state->session->stream, var_smtp_helo_tmout,
305 if ((except = vstream_setjmp(state->session->stream)) != 0)
318 switch ((resp = smtp_chat_resp(session))
742 SMTP_SESSION *session = state->session; local
914 SMTP_SESSION *session = state->session; local
1146 SMTP_SESSION *session = state->session; local
2059 SMTP_SESSION *session = state->session; local
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_cspdl/lib/
H A DSSFactory.cpp30 bool SSFactory::setup(SSCSPSession &session, CSPFullPluginSession::CSPContext * &cspCtx, argument
39 cspCtx = new SSSignatureContext(session);
42 cspCtx = new SSMACContext(session);
45 cspCtx = new SSDigestContext(session);
49 cspCtx = new SSCryptContext(session); // @@@ Could also be wrap/unwrap
52 cspCtx = new SSRandomContext(session); // @@@ Should go.
62 cspCtx = new MD5Context(session);
65 cspCtx = new SHA1Context(session);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_sd_cspdl/lib/
H A DSDFactory.cpp36 bool SDFactory::setup(SDCSPSession &session, CSPFullPluginSession::CSPContext * &cspCtx, argument
45 cspCtx = new SDSignatureContext(session);
48 cspCtx = new SDMACContext(session);
51 cspCtx = new SDDigestContext(session);
55 cspCtx = new SDCryptContext(session); // @@@ Could also be wrap/unwrap
58 cspCtx = new SDRandomContext(session); // @@@ Should go.
68 cspCtx = new MD5Context(session);
71 cspCtx = new SHA1Context(session);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_csp/lib/
H A Dcryptkitcsp.cpp75 AppleCSPSession &session,
84 cspCtx = new SignatureContext(session,
87 &session,
88 session,
94 cspCtx = new SignatureContext(session,
97 &session,
98 session,
104 cspCtx = new SignatureContext(session,
107 &session,
108 session,
74 setup( AppleCSPSession &session, CSPFullPluginSession::CSPContext * &cspCtx, const Context &context) argument
[all...]
H A DmiscAlgFactory.cpp71 AppleCSPSession &session,
92 cspCtx = new GAESContext(session);
95 cspCtx = new AESContext(session);
103 cspCtx = new DESContext(session);
116 cspCtx = new DES3Context(session);
124 cspCtx = new RC2Context(session);
132 cspCtx = new RC4Context(session);
140 cspCtx = new RC5Context(session);
147 cspCtx = new BlowfishContext(session);
154 cspCtx = new CastContext(session);
70 setup( AppleCSPSession &session, CSPFullPluginSession::CSPContext * &cspCtx, const Context &context) argument
[all...]
H A DRSA_DSA_csp.cpp86 AppleCSPSession &session,
95 cspCtx = new SignatureContext(session,
98 session,
104 cspCtx = new SignatureContext(session,
107 session,
113 cspCtx = new SignatureContext(session,
116 session,
123 cspCtx = new SignatureContext(session,
126 session,
132 cspCtx = new SignatureContext(session,
85 setup( AppleCSPSession &session, CSPFullPluginSession::CSPContext * &cspCtx, const Context &context) argument
[all...]
H A DDH_exchange.h32 AppleCSPSession &session);
/macosx-10.10.1/Security-57031.1.35/Security/authd/
H A Dsession.c3 #include "session.h"
23 session_t session = (session_t)value; local
25 LOGV("session: %i deallocated %p", session->auditinfo.ai_asid, session);
28 dispatch_barrier_sync(session->dispatch_queue, ^{});
30 dispatch_release(session->dispatch_queue);
31 CFReleaseSafe(session->credentials);
32 CFReleaseSafe(session->processes);
35 AUTH_TYPE_INSTANCE(session,
59 session_t session = NULL; local
82 session_update(session_t session) argument
87 session_get_attributes(session_t session) argument
94 _set_attributes(session_t session, uint64_t flags) argument
103 session_set_attributes(session_t session, uint64_t flags) argument
109 session_clear_attributes(session_t session, uint64_t flags) argument
117 session_get_key(session_t session) argument
123 session_get_id(session_t session) argument
129 session_get_uid(session_t session) argument
135 session_add_process(session_t session, process_t proc) argument
146 session_remove_process(session_t session, process_t proc) argument
157 session_get_process_count(session_t session) argument
167 session_set_credential(session_t session, credential_t cred) argument
178 session_credentials_purge(session_t session) argument
189 session_credentials_iterate(session_t session, credential_iterator_t iter) argument
[all...]
/macosx-10.10.1/ruby-106/ruby/test/cgi/
H A Dtest_cgi_session.rb3 require 'cgi/session'
4 require 'cgi/session/pstore'
10 @session_dir = Dir.mktmpdir(%w'session dir')
32 session = CGI::Session.new(cgi,"tmpdir"=>@session_dir)
33 session["key1"]=value1
34 session["key2"]=value2
35 assert_equal(value1,session["key1"])
36 assert_equal(value2,session["key2"])
37 session.close
44 'QUERY_STRING' => "_session_id=#{session
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/librewrite/
H A Dsession.c72 * Inits a session
80 struct rewrite_session *session, tmp; local
91 session = ( struct rewrite_session * )avl_find( info->li_cookies,
93 if ( session ) {
94 session->ls_count++;
98 return session;
101 session = calloc( sizeof( struct rewrite_session ), 1 );
102 if ( session == NULL ) {
105 session->ls_cookie = ( void * )cookie;
106 session
150 struct rewrite_session *session, tmp; local
196 struct rewrite_session *session; local
257 struct rewrite_session *session; local
304 struct rewrite_session *session = (struct rewrite_session *)v_session; local
323 struct rewrite_session *session = (struct rewrite_session *)v_session; local
339 struct rewrite_session *session, tmp = { 0 }; local
[all...]
/macosx-10.10.1/DiskArbitration-268/diskarbitrationd/
H A DDASession.c74 DASessionRef session = ( DASessionRef ) object; local
81 session->_name,
82 session->_pid,
83 CFMachPortGetPort( session->_server ) );
88 DASessionRef session = ( DASessionRef ) object; local
93 session->_name,
94 session->_pid,
95 CFMachPortGetPort( session->_server ) );
100 __DASession * session; local
102 session
126 DASessionRef session = ( DASessionRef ) object; local
165 DASessionRef session = ( DASessionRef ) object; local
178 DASessionRef session; local
287 DASessionGetOption( DASessionRef session, DASessionOption option ) argument
302 DASessionGetState( DASessionRef session, DASessionState state ) argument
317 DASessionQueueCallback( DASessionRef session, DACallbackRef callback ) argument
347 DASessionRegisterCallback( DASessionRef session, DACallbackRef callback ) argument
352 DASessionScheduleWithRunLoop( DASessionRef session, CFRunLoopRef runLoop, CFStringRef runLoopMode ) argument
357 DASessionSetAuthorization( DASessionRef session, AuthorizationRef authorization ) argument
367 DASessionSetClientPort( DASessionRef session, mach_port_t client ) argument
400 DASessionSetOption( DASessionRef session, DASessionOption option, Boolean value ) argument
405 DASessionSetOptions( DASessionRef session, DASessionOptions options, Boolean value ) argument
411 DASessionSetState( DASessionRef session, DASessionState state, Boolean value ) argument
417 DASessionUnregisterCallback( DASessionRef session, DACallbackRef callback ) argument
457 DASessionUnscheduleFromRunLoop( DASessionRef session, CFRunLoopRef runLoop, CFStringRef runLoopMode ) argument
[all...]
H A DDASession.h58 extern const char * _DASessionGetName( DASessionRef session );
61 extern AuthorizationRef DASessionGetAuthorization( DASessionRef session );
62 extern CFMutableArrayRef DASessionGetCallbackQueue( DASessionRef session );
63 extern CFMutableArrayRef DASessionGetCallbackRegister( DASessionRef session );
64 extern mach_port_t DASessionGetID( DASessionRef session );
65 extern Boolean DASessionGetOption( DASessionRef session, DASessionOption option );
66 extern DASessionOptions DASessionGetOptions( DASessionRef session );
67 extern mach_port_t DASessionGetServerPort( DASessionRef session );
68 extern Boolean DASessionGetState( DASessionRef session, DASessionState state );
71 extern void DASessionQueueCallback( DASessionRef session, DACallbackRe
[all...]
/macosx-10.10.1/DiskArbitration-268/DiskArbitration/
H A DDASession.c84 __private_extern__ void _DADispatchCallback( DASessionRef session,
95 DASessionRef session = ( DASessionRef ) object; local
102 session->_name,
103 session->_pid,
104 session->_server );
109 DASessionRef session = ( DASessionRef ) object; local
114 session->_name,
115 session->_pid,
116 session->_server );
121 __DASession * session; local
142 DASessionRef session = ( DASessionRef ) object; local
163 DASessionRef session = ( DASessionRef ) object; local
172 DASessionRef session = info; local
417 DAApprovalSessionScheduleWithRunLoop( DAApprovalSessionRef session, CFRunLoopRef runLoop, CFStringRef runLoopMode ) argument
424 DAApprovalSessionUnscheduleFromRunLoop( DAApprovalSessionRef session, CFRunLoopRef runLoop, CFStringRef runLoopMode ) argument
433 DASessionRef session; local
513 DASessionScheduleWithRunLoop( DASessionRef session, CFRunLoopRef runLoop, CFStringRef runLoopMode ) argument
526 DASessionSetDispatchQueue( DASessionRef session, dispatch_queue_t queue ) argument
612 DASessionUnscheduleFromRunLoop( DASessionRef session, CFRunLoopRef runLoop, CFStringRef runLoopMode ) argument
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/sec/Security/
H A DSecOTRSession.c128 SecOTRSessionRef session = (SecOTRSessionRef)cf; local
130 SecOTRAuthStateString(session->_state),
131 session->_compactAppleMessages ? "C" :"c",
132 session->_me ? "F" : "f",
133 session->_them ? "P" : "p",
134 session->_receivedDHMessage ? "D" : "d",
135 session->_receivedDHKeyMessage ? "K" : "k",
136 session->_keyID,
137 session->_theirKeyID,
138 session
143 SecOTRSessionRef session = (SecOTRSessionRef)cf; local
161 SecOTRSessionResetInternal(SecOTRSessionRef session) argument
181 SecOTRSessionReset(SecOTRSessionRef session) argument
247 SecOTRSFindKeysForMessage(SecOTRSessionRef session, SecOTRFullDHKeyRef myKey, SecOTRPublicDHKeyRef theirKey, bool sending, uint8_t** messageKey, uint8_t** macKey, uint64_t **counter) argument
314 SecOTRSessionRef session = CFTypeAllocate(SecOTRSession, struct _SecOTRSession, allocator); local
426 SecOTRSAppendSerialization(SecOTRSessionRef session, CFMutableDataRef serializeInto) argument
512 SecOTRSGetIsReadyForMessages(SecOTRSessionRef session) argument
521 SecOTRSGetIsIdle(SecOTRSessionRef session) argument
530 SecOTRSExpireCachedKeysForFullKey(SecOTRSessionRef session, SecOTRFullDHKeyRef myKey) argument
542 SecOTRSExpireCachedKeysForPublicKey(SecOTRSessionRef session, SecOTRPublicDHKeyRef theirKey) argument
554 SecOTRSPrecalculateForPair(SecOTRSessionRef session, SecOTRFullDHKeyRef myKey, SecOTRPublicDHKeyRef theirKey) argument
565 SecOTRSPrecalculateKeysInternal(SecOTRSessionRef session) argument
573 SecOTRSPrecalculateKeys(SecOTRSessionRef session) argument
578 SecOTRSGetMessageKind(SecOTRSessionRef session, CFDataRef message) argument
605 SecOTRSSignAndProtectRaw_locked(SecOTRSessionRef session, CFDataRef sourceMessage, CFMutableDataRef destinationMessage, uint8_t* messageKey, uint8_t* macKey, uint64_t* counter) argument
644 SecOTRSSignAndProtectCompact_locked(SecOTRSessionRef session, CFDataRef sourceMessage, CFMutableDataRef destinationMessage, uint8_t* messageKey, uint8_t* macKey, uint64_t* counter) argument
676 SecOTRSSignAndProtectMessage(SecOTRSessionRef session, CFDataRef sourceMessage, CFMutableDataRef protectedMessage) argument
723 SecOTRAcceptNewRemoteKey(SecOTRSessionRef session, SecOTRPublicDHKeyRef newKey) argument
736 SecOTRGenerateNewProposedKey(SecOTRSessionRef session) argument
753 SecOTRVerifyAndExposeRaw_locked(SecOTRSessionRef session, CFDataRef decodedBytes, CFMutableDataRef exposedMessageContents) argument
854 SecOTRVerifyAndExposeRawCompact_locked(SecOTRSessionRef session, CFDataRef decodedBytes, CFMutableDataRef exposedMessageContents) argument
937 SecOTRSVerifyAndExposeMessage(SecOTRSessionRef session, CFDataRef incomingMessage, CFMutableDataRef exposedMessageContents) argument
976 SecOTRSEndSession(SecOTRSessionRef session, CFMutableDataRef messageToSend) argument
[all...]
H A DSecOTRSessionAKE.c49 static void SecOTRInitMyDHKeys(SecOTRSessionRef session) argument
51 CFReleaseNull(session->_myKey);
52 session->_myKey = SecOTRFullDHKCreate(kCFAllocatorDefault);
53 CFReleaseNull(session->_myNextKey);
54 session->_myNextKey = SecOTRFullDHKCreate(kCFAllocatorDefault);
55 session->_keyID = 1;
57 bzero(session->_keyCache, sizeof(session->_keyCache));
60 OSStatus SecOTRSAppendStartPacket(SecOTRSessionRef session, CFMutableDataRef appendPacket) argument
64 dispatch_sync(session
91 SecOTRSAppendRestartPacket(SecOTRSessionRef session, CFMutableDataRef appendPacket) argument
149 SecOTRMyGXHashIsBigger(SecOTRSessionRef session, CFDataRef dhCommitMessage) argument
170 SecOTRSProcessDHMessage(SecOTRSessionRef session, CFDataRef incomingPacket, CFMutableDataRef negotiationResponse) argument
210 SecOTRSetupTheirKeyFrom(SecOTRSessionRef session, const uint8_t**data, size_t*size) argument
223 SecOTRSExtractTheirPublicDHKey(SecOTRSessionRef session, CFDataRef dhPacket) argument
241 SecOTRSProcessDHKeyMessage(SecOTRSessionRef session, CFDataRef incomingPacket, CFMutableDataRef negotiationResponse) argument
278 SecOTRSExtractR(SecOTRSessionRef session, const uint8_t **messageBytes, size_t *messageSize) argument
305 FindEncGYInDHPacket(SecOTRSessionRef session, const uint8_t **dhMessageBytesPtr, size_t *messageSizePtr, size_t* encGYBufferSize) argument
329 SecOTRSExtractRAndTheirDHKey(SecOTRSessionRef session, const uint8_t **messageBytes, size_t *messageSize) argument
359 SecVerifySignatureAndMac(SecOTRSessionRef session, bool usePrimes, const uint8_t **signatureAndMacBytes, size_t *signatureAndMacSize) argument
474 SecOTRSProcessRevealSignatureMessage(SecOTRSessionRef session, CFDataRef incomingPacket, CFMutableDataRef negotiationResponse) argument
499 SecOTRSProcessSignatureMessage(SecOTRSessionRef session, CFDataRef incomingPacket, CFMutableDataRef negotiationResponse) argument
526 SecOTRSProcessPacket(SecOTRSessionRef session, CFDataRef incomingPacket, CFMutableDataRef negotiationResponse) argument
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A D_WKWebsiteDataStoreInternal.h35 inline _WKWebsiteDataStore *wrapper(API::Session& session) argument
37 ASSERT([session.wrapper() isKindOfClass:[_WKWebsiteDataStore class]]);
38 return (_WKWebsiteDataStore *)session.wrapper();
/macosx-10.10.1/postfix-255/postfix/src/smtpstone/
H A Dsmtp-source.c157 * Per-session data structure with state.
166 int xfer_count; /* # of xfers in session */
360 static void startup(SESSION *session) argument
363 myfree((char *) session);
367 if (session->stream == 0) {
368 enqueue_connect(session);
370 send_mail(session);
378 SESSION *session = (SESSION *) context; local
380 startup(session);
383 /* start_another - start another session */
385 start_another(SESSION *session) argument
399 enqueue_connect(SESSION *session) argument
413 dequeue_connect(SESSION *session) argument
428 fail_connect(SESSION *session) argument
446 start_connect(SESSION *session) argument
478 SESSION *session = (SESSION *) context; local
507 SESSION *session = (SESSION *) context; local
539 send_helo(SESSION *session) argument
562 SESSION *session = (SESSION *) context; local
590 send_mail(SESSION *session) argument
612 SESSION *session = (SESSION *) context; local
643 SESSION *session = (SESSION *) context; local
671 SESSION *session = (SESSION *) context; local
708 SESSION *session = (SESSION *) context; local
728 SESSION *session = (SESSION *) context; local
814 SESSION *session = (SESSION *) context; local
853 SESSION *session = (SESSION *) context; local
863 SESSION *session = (SESSION *) context; local
897 send_quit(SESSION *session) argument
907 SESSION *session = (SESSION *) context; local
918 close_session(SESSION *session) argument
939 SESSION *session; local
[all...]
/macosx-10.10.1/ipsec-286.1.1/ipsec-tools/Common/
H A DipsecMessageTracer.h53 #define IPSECSESSIONTRACERSTART(session)
54 #define IPSECSESSIONTRACEREVENT(session, eventCode, message, failure_reason)
55 #define IPSECSESSIONTRACERSTOP(session, is_failure, reason)
56 #define IPSECSESSIONTRACERESTABLISHED(session)
64 #define IPSECSESSIONTRACERSTART(session) ipsecSessionTracerStart(session)
65 #define IPSECSESSIONTRACEREVENT(session, eventCode, message, failure_reason) ipsecSessionTracerEvent(session, eventCode, message, failure_reason)
66 #define IPSECSESSIONTRACERSTOP(session, is_failure, reason) ipsecSessionTracerStop(session, is_failur
[all...]

Completed in 254 milliseconds

1234567891011>>