Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Kart-Public
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
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
Galactice
Kart-Public
Commits
c93d259b
Commit
c93d259b
authored
4 years ago
by
James R.
Browse files
Options
Downloads
Patches
Plain Diff
Make cv_advertise no by default, do not save
parent
0cc38dcb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/mserv.c
+1
-1
1 addition, 1 deletion
src/mserv.c
with
1 addition
and
1 deletion
src/mserv.c
+
1
−
1
View file @
c93d259b
...
...
@@ -73,7 +73,7 @@ consvar_t cv_server_contact = {"server_contact", "", CV_SAVE|CV_CALL|CV_NOINIT,
consvar_t
cv_masterserver_update_rate
=
{
"masterserver_update_rate"
,
"15"
,
CV_SAVE
|
CV_CALL
|
CV_NOINIT
,
masterserver_update_rate_cons_t
,
MasterClient_Ticker
,
0
,
NULL
,
NULL
,
0
,
0
,
NULL
};
consvar_t
cv_advertise
=
{
"advertise"
,
"
Yes"
,
CV_SAVE
|
CV_NETVAR
|
CV_CALL
|
CV_NOINIT
,
CV_YesNo
,
Advertise_OnChange
,
0
,
NULL
,
NULL
,
0
,
0
,
NULL
};
consvar_t
cv_advertise
=
{
"advertise"
,
"
No"
,
CV_NETVAR
|
CV_CALL
|
CV_NOINIT
,
CV_YesNo
,
Advertise_OnChange
,
0
,
NULL
,
NULL
,
0
,
0
,
NULL
};
#if defined (MASTERSERVER) && defined (HAVE_THREADS)
int
ms_QueryId
;
...
...
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