vfs: check userland buffers before reading them.
[haiku.git] / src / bin / network / ppp_up / PPPUpApplication.h
blob1972affec8082dbef0e9cb036185545bfc7db332
1 /*
2 * Copyright 2005, Waldemar Kornewald <wkornew@gmx.net>
3 * Distributed under the terms of the MIT License.
4 */
6 #ifndef PPP_UP_APPLICATION__H
7 #define PPP_UP_APPLICATION__H
9 #include <Application.h>
10 #include <String.h>
11 #include <PPPInterfaceListener.h>
13 class ConnectionWindow;
15 #define APP_SIGNATURE "application/x-vnd.haiku.ppp_up"
18 class PPPUpApplication : public BApplication {
19 public:
20 PPPUpApplication(const char *interfaceName);
22 virtual void ReadyToRun();
24 private:
25 BString fInterfaceName;
29 #endif