Skip to content

Commit

Permalink
protocol-t1.c: add comments for t1_get_param()
Browse files Browse the repository at this point in the history
  • Loading branch information
LudovicRousseau committed May 25, 2024
1 parent 7709780 commit c69d4b5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/openct/proto-t1.c
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ void t1_release(/*@unused@*/ t1_state_t * t1)
}

/*
* Get/set parameters for T1 protocol
* Set parameters for T1 protocol
*/
int t1_set_param(t1_state_t * t1, int type, long value)
{
Expand Down Expand Up @@ -148,6 +148,9 @@ int t1_set_param(t1_state_t * t1, int type, long value)
return 0;
}

/*
* Get parameters for T1 protocol
*/
int t1_get_param(t1_state_t * t1, int type)
{
int value = -1;
Expand Down

0 comments on commit c69d4b5

Please sign in to comment.