[RFC PATCH v2 0/8] Remote helpers smart transport extensions

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Ilari Liusvaara
Date: Friday, December 4, 2009 - 8:56 am

This series is reroll of previous version of smart transport extensions,
with various technical nits addressed and some errors fixed. Also rebased
on top of latest next.

Major changes:
- Service names now have 'git-' prefix.
- Successful response to <connect> is "", not "OK".
- Removed <connect> "ERROR" response.
- <connect-r> renamed to <connect>.
- <invoke-r> removed. Pass service executable as option "servpath" instead.
- HTTP helpers are now hardlinked if possible (copied if not).
- Revert the changes to invoking helpers (see known issues)


Known issues (not caused by this code and does not need this code to be
visible):
- Segfaults when closing transports, caused by double-frees
- Funky error message if trying to use not-present helper.


Ilari Liusvaara (8):
  Pass unknown protocols to external protocol handlers
  Refactor git transport options parsing
  Support taking over transports
  Support remote helpers implementing smart transports
  Support remote archive from external protocol helpers
  Remove special casing of http, https and ftp
  Add remote helper debug mode
  Support mandatory capabilities

 .gitignore                           |    4 +
 Documentation/git-remote-helpers.txt |   36 +++++-
 Makefile                             |   24 +++-
 builtin-archive.c                    |   17 ++-
 transport-helper.c                   |  261 +++++++++++++++++++++++++++++-----
 transport.c                          |  258 +++++++++++++++++++++++++++------
 transport.h                          |   32 ++++
 7 files changed, 540 insertions(+), 92 deletions(-)

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[RFC PATCH v2 0/8] Remote helpers smart transport extensions, Ilari Liusvaara, (Fri Dec 4, 8:56 am)
[RFC PATCH v2 2/8] Refactor git transport options parsing, Ilari Liusvaara, (Fri Dec 4, 8:56 am)
[RFC PATCH v2 3/8] Support taking over transports, Ilari Liusvaara, (Fri Dec 4, 8:56 am)
[RFC PATCH v2 7/8] Add remote helper debug mode, Ilari Liusvaara, (Fri Dec 4, 8:56 am)
[RFC PATCH v2 8/8] Support mandatory capabilities, Ilari Liusvaara, (Fri Dec 4, 8:56 am)
Re: [RFC PATCH v2 7/8] Add remote helper debug mode, Sverre Rabbelier, (Fri Dec 4, 9:03 am)
Re: [RFC PATCH v2 3/8] Support taking over transports, Shawn O. Pearce, (Fri Dec 4, 11:27 am)
Re: [RFC PATCH v2 3/8] Support taking over transports, Ilari Liusvaara, (Sat Dec 5, 6:18 am)