Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
zmap
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container 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
Insights
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
ensembl-gh-mirror
zmap
Commits
2e143630
Commit
2e143630
authored
16 years ago
by
edgrif
Browse files
Options
Downloads
Patches
Plain Diff
small format change.
parent
e861655f
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/zmapControl/zmapControlRemoteSend.c
+30
-18
30 additions, 18 deletions
src/zmapControl/zmapControlRemoteSend.c
with
30 additions
and
18 deletions
src/zmapControl/zmapControlRemoteSend.c
+
30
−
18
View file @
2e143630
...
...
@@ -25,11 +25,12 @@
*
* Description:
*
* Exported functions: See XXXXXXXXXXXXX.h
* Exported functions: See zmapControl_P.h
*
* HISTORY:
* Last edited:
Jul
16 1
5
:5
1
200
7
(
rds
)
* Last edited:
Dec
16 1
4
:5
8
200
8
(
edgrif
)
* Created: Thu Jul 12 14:54:52 2007 (rds)
* CVS info: $Id: zmapControlRemoteSend.c,v 1.
1
200
7-07
-18 13:
30:24 rds
Exp $
* CVS info: $Id: zmapControlRemoteSend.c,v 1.
2
200
8-12
-18 13:
28:31 edgrif
Exp $
*-------------------------------------------------------------------
*/
...
...
@@ -66,20 +67,26 @@ static gboolean xml_zmap_end_cb(gpointer user_data, ZMapXMLElement element,
ZMapXMLParser
parser
);
static
ZMapXMLUtilsEventStackStruct
wrap_start_G
[]
=
{
{
ZMAPXML_START_ELEMENT_EVENT
,
"zmap"
,
ZMAPXML_EVENT_DATA_NONE
,
{
0
}},
{
ZMAPXML_ATTRIBUTE_EVENT
,
"action"
,
ZMAPXML_EVENT_DATA_QUARK
,
{
NULL
}},
{
0
}
},
wrap_end_G
[]
=
{
{
ZMAPXML_END_ELEMENT_EVENT
,
"zmap"
,
ZMAPXML_EVENT_DATA_NONE
,
{
0
}},
{
0
}
};
static
ZMapXMLUtilsEventStackStruct
wrap_start_G
[]
=
{
{
ZMAPXML_START_ELEMENT_EVENT
,
"zmap"
,
ZMAPXML_EVENT_DATA_NONE
,
{
0
}},
{
ZMAPXML_ATTRIBUTE_EVENT
,
"action"
,
ZMAPXML_EVENT_DATA_QUARK
,
{
NULL
}},
{
0
}
}
;
static
ZMapXMLUtilsEventStackStruct
wrap_end_G
[]
=
{
{
ZMAPXML_END_ELEMENT_EVENT
,
"zmap"
,
ZMAPXML_EVENT_DATA_NONE
,
{
0
}},
{
0
}
}
;
static
ZMapXMLObjTagFunctionsStruct
response_starts_G
[]
=
{
{
"zmap"
,
xml_zmap_start_cb
},
{
"response"
,
xml_response_start_cb
},
{
NULL
,
NULL
}
};
static
ZMapXMLObjTagFunctionsStruct
response_ends_G
[]
=
{
{
"zmap"
,
xml_zmap_end_cb
},
{
"error"
,
xml_error_end_cb
},
...
...
@@ -242,6 +249,7 @@ static int xml_event_to_buffer(ZMapXMLWriter writer, char *xml, int len, gpointe
return
len
;
}
static
gboolean
xml_zmap_start_cb
(
gpointer
user_data
,
ZMapXMLElement
element
,
ZMapXMLParser
parser
)
{
...
...
@@ -250,6 +258,17 @@ static gboolean xml_zmap_start_cb(gpointer user_data, ZMapXMLElement element,
return
TRUE
;
}
static
gboolean
xml_zmap_end_cb
(
gpointer
user_data
,
ZMapXMLElement
element
,
ZMapXMLParser
parser
)
{
if
(
alert_client_debug_G
)
zMapLogWarning
(
"In zmap %s Handler."
,
"End"
);
return
TRUE
;
}
static
gboolean
xml_response_start_cb
(
gpointer
user_data
,
ZMapXMLElement
element
,
ZMapXMLParser
parser
)
{
...
...
@@ -285,10 +304,3 @@ static gboolean xml_error_end_cb(gpointer user_data, ZMapXMLElement element,
return
TRUE
;
}
static
gboolean
xml_zmap_end_cb
(
gpointer
user_data
,
ZMapXMLElement
element
,
ZMapXMLParser
parser
)
{
if
(
alert_client_debug_G
)
zMapLogWarning
(
"In zmap %s Handler."
,
"End"
);
return
TRUE
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
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