search for: headend

Displaying 5 results from an estimated 5 matches for "headend".

Did you mean: headed
2012 Oct 17
6
SuSE Linux Enterprise Server OpenSSH 5.1p1 nagle issue?
I have a system in place where it appears that TCP will make a massive change in behavior mid-stream with existing SSH sessions. We noticed the issue first with an application using an SSH forward. However, we were able to rule that out by generating the same TCP characteristics by having a perl script dump text out to a terminal simulating a large data flow from the far end(ssh server) back
2004 Dec 02
0
tremor: macro-ize mask table
...7fffff,0x00ffffff, - 0x01ffffff,0x03ffffff,0x07ffffff,0x0fffffff,0x1fffffff, - 0x3fffffff,0x7fffffff,0xffffffff }; +#define MASK(b) ( (unsigned long)( (( (1<<((b)&31)) ^ (((b)&32)>>5) ) ) -1 ) \ + & 0xffffffff ) /* spans forward, skipping as many bytes as headend is negative; if headend is zero, simply finds next byte. If we're up to the end @@ -80,7 +74,7 @@ /* Read in bits without advancing the bitptr; bits <= 32 */ long oggpack_look(oggpack_buffer *b,int bits){ - unsigned long m=mask[bits]; + unsigned long m=MASK(bits); unsigned long...
2006 Jan 13
2
libogg2 issue in revision 10730
...both take an (oggpack_buffer *) as an argument and immediately erase all it's contents: void oggpack_readinit(oggpack_buffer *b,ogg_reference *r){ memset(b,0,sizeof(*b)); b->tail=b->head=r; b->count=0; b->headptr=b->head->buffer->data+b->head->begin; b->headend=b->head->length; _span(b); } A program using the libogg2 library cannot know the size of an oggpack_buffer, so you cannot define such a variable (only the pointer). This is because the structure definition is hidden in ogginternal.h, which is not included. Therefore when trying to do some...
2004 Jan 21
4
What technology could my phone company be using?
I live in New Brunswick Canada. The phone company is Aliant. When you set up business service here, you can go with either analog or digital lines. This isn't a T1 or ISDN. They are talking individual lines direct to handsets that they provide. They offer the digital option with even very small ( 2 - 4) number of lines. What technology could this be? Is there any way to connect such a
2006 Oct 09
1
Vorbis primitive API examples (LONG)
...ct ogg_buffer *next; } ptr; } ogg_buffer; typedef struct ogg_reference { ogg_buffer *buffer; long begin; long length; struct ogg_reference *next; } ogg_reference; typedef struct oggpack_buffer { int headbit; unsigned char *headptr; long headend; /* memory management */ ogg_reference *head; ogg_reference *tail; /* render the byte/bit counter API constant time */ long count; /* doesn't count the tail */ } oggpack_buffer; typedef struct oggbyte_buffer { ogg_reference *baseref; ogg_reference *ref; unsigned...