Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
90cf8607
Commit
90cf8607
authored
Jun 26, 2018
by
Nelson Elhage
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove GIT_PKT_PACK entirely
parent
e212011b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
26 deletions
+3
-26
src/transports/smart.h
+1
-1
src/transports/smart_pkt.c
+2
-25
No files found.
src/transports/smart.h
View file @
90cf8607
...
...
@@ -40,7 +40,7 @@ typedef enum {
GIT_PKT_HAVE
,
GIT_PKT_ACK
,
GIT_PKT_NAK
,
GIT_PKT_PACK
,
GIT_PKT_PACK
__UNUSED
,
GIT_PKT_COMMENT
,
GIT_PKT_ERR
,
GIT_PKT_DATA
,
...
...
src/transports/smart_pkt.c
View file @
90cf8607
...
...
@@ -86,19 +86,6 @@ static int nak_pkt(git_pkt **out)
return
0
;
}
static
int
pack_pkt
(
git_pkt
**
out
)
{
git_pkt
*
pkt
;
pkt
=
git__malloc
(
sizeof
(
git_pkt
));
GITERR_CHECK_ALLOC
(
pkt
);
pkt
->
type
=
GIT_PKT_PACK
;
*
out
=
pkt
;
return
0
;
}
static
int
comment_pkt
(
git_pkt
**
out
,
const
char
*
line
,
size_t
len
)
{
git_pkt_comment
*
pkt
;
...
...
@@ -370,7 +357,7 @@ static int32_t parse_len(const char *line)
num
[
k
]
=
'.'
;
}
}
giterr_set
(
GITERR_NET
,
"invalid hex digit in length: '%s'"
,
num
);
return
-
1
;
}
...
...
@@ -407,17 +394,7 @@ int git_pkt_parse_line(
len
=
parse_len
(
line
);
if
(
len
<
0
)
{
/*
* If we fail to parse the length, it might be because the
* server is trying to send us the packfile already.
*/
if
(
bufflen
>=
4
&&
!
git__prefixcmp
(
line
,
"PACK"
))
{
giterr_clear
();
*
out
=
line
;
return
pack_pkt
(
head
);
}
return
(
int
)
len
;
return
GIT_ERROR
;
}
/*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment