Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Pkcs11 Proxy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
smallstep
Pkcs11 Proxy
Commits
5b6b2989
Commit
5b6b2989
authored
15 years ago
by
Corentin Chary
Browse files
Options
Downloads
Patches
Plain Diff
pkcs11: fix debug traces
Signed-off-by:
Corentin Chary
<
corentin.chary@gmail.com
>
parent
e25b74e2
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
gck-rpc-dispatch.c
+4
-1
4 additions, 1 deletion
gck-rpc-dispatch.c
gck-rpc-module.c
+1
-1
1 addition, 1 deletion
gck-rpc-module.c
with
5 additions
and
2 deletions
gck-rpc-dispatch.c
+
4
−
1
View file @
5b6b2989
...
...
@@ -81,7 +81,8 @@ static pthread_mutex_t pkcs11_dispatchers_mutex = PTHREAD_MUTEX_INITIALIZER;
/* -----------------------------------------------------------------------------
* LOGGING and DEBUGGING
*/
#undef DEBUG_OUTPUT
#define DEBUG_OUTPUT 1
#if DEBUG_OUTPUT
#define debug(x) gck_rpc_debug x
#else
...
...
@@ -99,6 +100,7 @@ void gck_rpc_log(const char *msg, ...)
va_start
(
ap
,
msg
);
vfprintf
(
stdout
,
msg
,
ap
);
printf
(
"
\n
"
);
va_end
(
ap
);
}
...
...
@@ -2096,6 +2098,7 @@ static void run_dispatch_loop(CallState *cs)
/* The client application */
if
(
!
read_all
(
cs
->
sock
,
(
unsigned
char
*
)
&
cs
->
appid
,
sizeof
(
cs
->
appid
)))
{
gck_rpc_warn
(
"Can't read appid
\n
"
);
return
;
}
gck_rpc_log
(
"New session %d-%d
\n
"
,
(
uint32_t
)
(
cs
->
appid
>>
32
),
...
...
This diff is collapsed.
Click to expand it.
gck-rpc-module.c
+
1
−
1
View file @
5b6b2989
...
...
@@ -73,7 +73,6 @@ static char pkcs11_socket_path[MAXPATHLEN] = { 0, };
/* -----------------------------------------------------------------------------
* LOGGING and DEBUGGING
*/
#undef DEBUG_OUTPUT
#define DEBUG_OUTPUT 0
#if DEBUG_OUTPUT
#define debug(x) gck_rpc_debug x
...
...
@@ -91,6 +90,7 @@ void gck_rpc_log(const char *msg, ...)
va_start
(
ap
,
msg
);
vfprintf
(
stderr
,
msg
,
ap
);
fprintf
(
stderr
,
"
\n
"
);
va_end
(
ap
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment