/* * Copyright (C) 2015 Tobias Klauser * * This file is part of llmnrd. * * llmnrd is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 2 of the License. * * llmnrd is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with llmnrd. If not, see . */ #ifndef LLMNR_H #define LLMNR_H #include int llmnr_run(const char *hostname, uint16_t port); void llmnr_stop(void); #endif /* LLMNR_H */ t.git/'>net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Weinberger <richard@nod.at>2016-09-14 22:28:49 +0200
committerRichard Weinberger <richard@nod.at>2016-10-02 22:55:02 +0200
commit474b93704f32163af4bfa728fddc570eba357353 (patch)
tree2d7584f287efa71cbf3f7137c1aa9eb6dbcb1a90
parentf7d11b33d4e8cedf19367c09b891bbc705163976 (diff)
ubifs: Implement O_TMPFILE
This patchs adds O_TMPFILE support to UBIFS. A temp file is a reference to an unlinked inode, a user holding the reference can use it. As soon it is being closed all data vanishes. Signed-off-by: Richard Weinberger <richard@nod.at>