aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/support/file_win32.c
Commit message (Collapse)AuthorAge
* Expose gpr_asprintf and gpr_strdupGravatar Masood Malekghassemi2015-06-03
|
* Various Windows fixes.Gravatar Nicolas Noble2015-03-19
| | | | | | | | | | | | | | -) using dupenv_s instead of getenv_s and calling strdup ourselves. -) few impossible-to-obtain if checks. -) various signed/unsigned casting. -) using time_t instead of time32_t -) checking output of FormatMessage for failures. -) don't redefine _WIN32_WINNT without undefining it first. -) fixed msvc's interlocked casting. -) renamed AddPort to AddListeningPort. -) added protobuf's third_party includes to search path. -) added a missing definition for inet_ntop in mingw32. -) removed useless declarations.
* Add missing new-lines at end of fileGravatar Craig Tiller2015-02-18
|
* Update copyright to 2015Gravatar Craig Tiller2015-02-18
|
* Freeing the proper string in gpr_tmpfile.Gravatar Nicolas Noble2015-02-11
| | | | | | Fixes #478. (oops)
* Making the gpr_tmpfile's win32 version a bit more Windows-y.Gravatar Nicolas "Pixel" Noble2015-02-06
| | | | Also adding windows helpers to convert to and from TCHAR strings.
* Addressing comments.Gravatar Julien Boeuf2015-02-03
| | | | The new gpr_tmpfile API is actually much nicer to use. Thanks Nico!
* Adding support for loading the SSL roots from an environment variable.Gravatar Julien Boeuf2015-02-02
- Had to add support for files and environment variables as well. - I can't compile on windows so I'm sure there will be some issues. - Tested end-to-end with the simple ssl fullstack test.