Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Benjamin J. Thompson
Tor
Commits
f07f7a7a
Commit
f07f7a7a
authored
18 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Patches
Plain Diff
r8923@totoro: nickm | 2006-10-07 11:44:33 -0400
More doxygen comments svn:r8637
parent
3d98712d
No related branches found
Branches containing commit
Tags
tor-0.1.2.2-alpha
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/common/tortls.c
+1
-1
1 addition, 1 deletion
src/common/tortls.c
src/common/util.c
+3
-3
3 additions, 3 deletions
src/common/util.c
src/or/or.h
+3
-1
3 additions, 1 deletion
src/or/or.h
with
7 additions
and
5 deletions
src/common/tortls.c
+
1
−
1
View file @
f07f7a7a
...
...
@@ -37,7 +37,7 @@ const char tortls_c_id[] =
/** How long do identity certificates live? (sec) */
#define IDENTITY_CERT_LIFETIME (365*24*60*60)
/*
DOCDOC
*/
/*
* Structure holding the TLS state for a single connection.
*/
typedef
struct
tor_tls_context_t
{
SSL_CTX
*
ctx
;
}
tor_tls_context_t
;
...
...
This diff is collapsed.
Click to expand it.
src/common/util.c
+
3
−
3
View file @
f07f7a7a
...
...
@@ -926,10 +926,10 @@ parse_rfc1123_time(const char *buf, time_t *t)
return
0
;
}
/** Set <b>buf</b> to the ISO
????
encoding of the local value of <b>t</b>.
/** Set <b>buf</b> to the ISO
8601
encoding of the local value of <b>t</b>.
* The buffer must be at least ISO_TIME_LEN+1 bytes long.
*
* (ISO
????
format is 2006-10-29 10:57:20)
* (ISO
8601
format is 2006-10-29 10:57:20)
*/
void
format_local_iso_time
(
char
*
buf
,
time_t
t
)
...
...
@@ -938,7 +938,7 @@ format_local_iso_time(char *buf, time_t t)
strftime
(
buf
,
ISO_TIME_LEN
+
1
,
"%Y-%m-%d %H:%M:%S"
,
tor_localtime_r
(
&
t
,
&
tm
));
}
/** Set <b>buf</b> to the ISO
????
encoding of the GMT value of <b>t</b>.
/** Set <b>buf</b> to the ISO
8601
encoding of the GMT value of <b>t</b>.
* The buffer must be at least ISO_TIME_LEN+1 bytes long.
*/
void
...
...
This diff is collapsed.
Click to expand it.
src/or/or.h
+
3
−
1
View file @
f07f7a7a
...
...
@@ -1048,7 +1048,9 @@ typedef struct {
/** List of signed_descriptor_t for older router descriptors we're
* caching. */
smartlist_t
*
old_routers
;
/** DOCDOC */
/** Mmaped file holding server descriptors. If present, any router whose
* cache_info.saved_location == SAVED_IN_CACHE is stored in this file
* starting at cache_info.saved_offset */
tor_mmap_t
*
mmap_descriptors
;
}
routerlist_t
;
...
...
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