vfs: check userland buffers before reading them.
[haiku.git] / headers / os / net / UrlProtocolRoster.h
blob3e541493dcdc57a06366853691c8b27608323816
1 /*
2 * Copyright 2013 Haiku Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
6 #ifndef _B_URL_ROSTER_H_
7 #define _B_URL_ROSTER_H_
10 #include <stdlib.h>
13 class BUrl;
14 class BUrlContext;
15 class BUrlProtocolListener;
16 class BUrlRequest;
18 class BUrlProtocolRoster {
19 public:
20 static BUrlRequest* MakeRequest(const BUrl& url,
21 BUrlProtocolListener* listener = NULL,
22 BUrlContext* context = NULL);
25 #endif