Switch to unified view

a/scctl_src/scctl.cpp b/scctl_src/scctl.cpp
...
...
30
 *
30
 *
31
 * When executing any of the ops from the command line, the program
31
 * When executing any of the ops from the command line, the program
32
 * first tries to contact the server, and does things itself if no
32
 * first tries to contact the server, and does things itself if no
33
 * server is found (encurring 2-3 S of timeout in the latter case).
33
 * server is found (encurring 2-3 S of timeout in the latter case).
34
 */
34
 */
35
#include "libupnpp/config.h"
35
#include "../src/config.h"
36
36
37
#include <stdio.h>
37
#include <stdio.h>
38
#include <stdlib.h>
38
#include <stdlib.h>
39
#include <unistd.h>
39
#include <unistd.h>
40
#include <getopt.h>
40
#include <getopt.h>
...
...
47
#include <vector>
47
#include <vector>
48
#include <algorithm>
48
#include <algorithm>
49
49
50
#include "libupnpp/upnpplib.hxx"
50
#include "libupnpp/upnpplib.hxx"
51
#include "libupnpp/log.hxx"
51
#include "libupnpp/log.hxx"
52
#include "libupnpp/control/mediarenderer.hxx"
53
#include "libupnpp/control/discovery.hxx"
54
#include "libupnpp/control/linnsongcast.hxx"
52
#include "libupnpp/control/linnsongcast.hxx"
55
53
56
#include "../src/netcon.h"
54
#include "../src/netcon.h"
55
#include "../src/smallut.h"
57
#include "../src/upmpdutils.hxx"
56
#include "../src/upmpdutils.hxx"
58
57
59
using namespace UPnPClient;
58
using namespace UPnPClient;
60
using namespace UPnPP;
59
using namespace UPnPP;
61
using namespace std;
60
using namespace std;