similar to: SSL encryption with icecast2

Displaying 20 results from an estimated 300 matches similar to: "SSL encryption with icecast2"

2006 Aug 15
2
SSL encryption with icecast2
Hi Thomas, On Tue, Aug 15, 2006 at 10:43:28AM +0200, Thomas B. Ruecker wrote: > Do players support https? obviously not. But the implementation of SSL in a player isn't that hard. In a matter of fact, SSL isn't the best solution for a public stream, but I want to use it for a private stream, where every user has the knowledge how to use a player with ssl. :-) > You could simply set
2006 Jul 26
5
Monitor traffic/bandwidth by mountpoint
I saw a request for this feature raised several years ago. Has this been implemented yet? If not, how are users monitoring traffic on port 8000, and even better can you split it up by mountpoint? I want to know how much traffic our icecast clients are using each month. Thank you, Shannon
2005 Mar 06
1
wine wont' run
Any guess's as to whats going on here? A new from source compile/install vic@zeus:/usr/local/bin$ wine wine: creating configuration directory '/home/vic/.wine'... Unknown option '-w' usage: wineserver [options] options: -d<n> set debug level to <n> -p make server persistent -h display this help message -s server will use shared memory
2007 Jun 19
2
Traktor-Icecast
I have Traktor DJ studio 3.2 how do i get Icecast to work with it because it has totally confused me? Ryan Hussey (r.hussey@hotmail.co.uk) _________________________________________________________________ Feel like a local wherever you go with BackOfMyHand.com http://www.backofmyhand.com -------------- next part -------------- An HTML attachment was scrubbed... URL:
2007 Apr 13
2
Frustrated with Ubuntu XMMS, XMMS-Liveice, and icecast
I have XMMS and XMMS-liveice setup to use ALSA to stream audio to my icecast server using LAME encoding. I start the sound file and i can see XMMS playing away happily, icecast detects the connection and shows the source as being connected, but no bandwisth useage. If I connect to the icecast server I get a client connection, but no sound. Scanning other forums there appears that there might
2006 Aug 15
0
SSL encryption with icecast2
Frederic `jchome` Jaeckel wrote: > Hi there, > > is it possible to use such encryption like SSL/TLS for authenticating > users on a mountpoint? I can't find somethin like that in the > docmentation and it would be nice to have such a mechanism like that, > because all passwords will be transmitted in PLAIN text. This is not > very secure, because anyone can see the
2011 May 26
4
Different behavior of median and mean function - Why?
Hi together, below is a small example which produces outcome I do not understand, namely that the median function works fine on a data.frame without negative numbers, but doesn't work on a data.frame with one negative number. I'm sure there is a reasonable explanation for that or better, that I'm doing something wrong and someone could guide me how to solve it. I tried googling it,
2002 Dec 12
1
rsync error with novell server
Hi guys! I'm using rsync to update my work and mail from my Unix-workstation to my home directory on a Novell-Server... This is what I get as a message after the rsync is finished rsync error: partial transfer (code 23) at main.c(578) I understand that rsync was trying to chown a directory on the server which Novell doesn't support (or our admin doesn't :}) ... however, I
2002 Sep 12
2
computation on the client instead of the server
Hello, I read the thesis about rsync and I would like to know if we can do something different with rsync. Imagine that I have one server that contains a set of data. This server is not very strong compare to the number of client that want to sync there data with the server. If we say that there s 1000 clients, each client, when sync, will send a list of keys to the server and the server must
2005 Oct 11
1
[LLVMdev] Next LLVM release thoughts?
Spamming lists is probably the best reason to keep releases going. It's a great way to find new users :) By the way, are any distributions currently carrying LLVM? I couldn't find it in the Debian repositories. -----Original Message----- From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of Vikram S. Adve Sent: Tuesday, October 11, 2005 10:36 AM To:
2004 May 22
2
How to define specific location of tick marks in plot()
Hi, I wish to create a series of plots with the same x-axis range and the same placement of tick marks. In addition I want to force the tick marks to be at specific locations. For example, if I wish to have an x-axis which goes from 40 to 110, with tick marks at 40, 50, 60, ... , How can I accomplish that? The various parameters I have tried changing just seem to be suggestions for
2005 Aug 25
5
[LLVMdev] Mapping of class derivated and interfaces
Hi! i'm tring to figure out how classes and dependencies can be mapped to llvm. I've read on docs that nesting can be used: class base { int Y; }; class derived : base { short Z; }; becomes: %base = type { int } %derived = type { %base, short } That's ok, but now the question is: how do i encode a function that takes "base" type so that it also takes "derived"
2013 Oct 29
1
samba_backup
Hallo, i tried to backup samba4 by using the samba_backup script. I removed ?>/dev/null 2>&1?-Pipe from the tar-commands. Tar could not archive the temporary msg-files, because they where open. My question is, do I need the temporary msg-files for a complete samba4 database-backup? Thank you. tar: ./private/smbd.tmp/msg/msg.31043.1: socket ignored tar:
2004 Jul 01
0
simple AGI script
hello, does anybody have some agi script that can do following : when extension didn't pickup phone call, system send mail notify ( via sendmail ) to user mailbox with date, time and caller id ? ( something like missed call ) please can somebody help me with whis ? regards Marian -- SUNTEQ s. r. o. Hviezdoslavova 9 # Prievidza # 971 04 # Slovak republic Tel: +421-46-5430 754 # Fax:
2005 Sep 05
2
[LLVMdev] [OT] how to continue a pre-existing thread?
Sorry. It's kinda embarrassing but I don't know how to follow a thread. As you can see: http://lists.cs.uiuc.edu/pipermail/llvmdev/2005-September/thread.html My follow-up posts are not threaded. What is the subject I should use to continue a pre-existing thread? dependence analyzer for machine code? Re: dependence analyzer for machine code? [LLVMdev] Re: dependence analyzer for machine
2005 Aug 26
0
[LLVMdev] Mapping of class derivated and interfaces
> Hi! i'm tring to figure out how classes and dependencies > can be mapped to llvm. > [snip] > how do i encode a function that takes "base" type > so that it also takes "derived" ? You'll notice that your function doesn't take an object of type base, but a pointer to it. This is important - in a language such as LLVM where actual structures can be
2005 Aug 26
3
[LLVMdev] Mapping of class derivated and interfaces
> In any case when you > want to obtain a base pointer to a "derived" object (where derivation > is implemented as you showed - with nesting) it's simply a matter of > using getelementptr to obtain a pointer to the nested base object and > using that. Umm ok, but i've the strange feeling that i'm missing something.. First a simple question: getelementptr with
2007 Feb 19
1
Documenting options specific to a package.
If one specifies new options in a package, using the options() function, where does/should one document these new options? E.g. suppose that I put the line options(melvin=42) in a file zzz.R in the R directory of the package source, where the package contains functions foo(), bar(), clyde(), and irving() which all query options("melvin") and take some action based on the value of
2011 Apr 16
1
Matching Problem: Want to match to data.frame with inexact matching identifier (one identifier has to be in the range of the other).
Hello R-Community, I have the following matching problem: I have two data.frames, one with an observation every month (per company ID), and one with an observation every quarter (per company ID; note that quarter means fiscal quarter; therefore 1Q = Jan, Feb, Mar is not necessarily correct and also, a fiscal quarter is not necessarily 3 month long). For every month and company, I want to get the
2006 Aug 02
1
Openvpn problem not able to access the other machines on remote subnet
hey friends, I have installed OpenVPN 2.0.7 (i386-redhat-linux-gnu [SSL] [LZO] [EPOLL] built on Apr 29 2006) on Centos4.0 through rpm (diag repository). The network scenario of my office is below Remote Client ----> Internet <-------> Cisco Pix Firewall (Gateway) <----> VPN Server & LAN Clients