aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/support/file_posix.c
Commit message (Collapse)AuthorAge
* Expose gpr_asprintf and gpr_strdupGravatar Masood Malekghassemi2015-06-03
|
* Add missing new-lines at end of fileGravatar Craig Tiller2015-02-18
|
* Update copyright to 2015Gravatar Craig Tiller2015-02-18
|
* Cleaning up our posix definition / usage.Gravatar Nicolas "Pixel" Noble2015-02-14
| | | | | | | -) Let's not use _POSIX_SOURCE. It usually implies too much C99. _BSD_SOURCE would be the right thing to do here. -) _BSD_SOURCE is getting deprecated by glibc, so we also have to define _DEFAULT_SOURCE under Linux. -) accept4 and eventfd arn't as old as we may think; let's detect for it. -) stdint.h interferes with all these definitions if included too early; let's move it down.
* Adding /tmp to prefix when creating posix temporary files.Gravatar Julien Boeuf2015-02-06
| | | | - Addresses #416.
* Addressing comments.Gravatar Julien Boeuf2015-02-05
|
* 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.